8000 chore: removed travis yml and added git action support by mnoman09 · Pull Request #469 · optimizely/java-sdk · GitHub
[go: up one dir, main page]

Skip to content

chore: removed travis yml and added git action support #469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Apr 14, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
finalized integrationtest yml
  • Loading branch information
mnoman09 authored Apr 4, 2022
commit 5b8b5188b4b2c3a4d2e93deaf08ea18e8d70672e
29 changes: 10 additions & 19 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,19 @@ on:
FULLSTACK_TEST_REPO:
required: false
type: string
GITHUB_CONTEXT:
BUILD_NUMBER:
required: true
type: string
TRAVIS_EVENT_TYPE:
required: true
type: string
TRAVIS_REPO_SLUG:
GITHUB_CONTEXT:
required: true
type: string
TRAVIS_PULL_REQUEST_SLUG:
TRAVIS_EVENT_TYPE:
required: true
type: string
UPSTREAM_REPO:
REPOSITORY:
required: true
type: string
TRAVIS_COMMIT:
SHA:
required: true
type: string
TRAVIS_PULL_REQUEST_SHA:
Expand All @@ -30,9 +27,6 @@ on:
TRAVIS_PULL_REQUEST:
required: true
type: string
UPSTREAM_SHA:
required: true
type: string
EVENT_MESSAGE:
required: true
type: string
Expand All @@ -42,9 +36,6 @@ on:
REF_NAME:
required: true
type: string
EVENT_NAME:
required: true
type: string
secrets:
CI_USER_TOKEN:
required: true
Expand Down Expand Up @@ -80,13 +71,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.CI_USER_TOKEN }}
TRAVIS_EVENT_TYPE: ${{ inputs.TRAVIS_EVENT_TYPE }}
GITHUB_CONTEXT: ${{ inputs.GITHUB_CONTEXT }}
TRAVIS_REPO_SLUG: ${{ inputs.TRAVIS_REPO_SLUG }}
TRAVIS_PULL_REQUEST_SLUG: ${{ inputs.TRAVIS_PULL_REQUEST_SLUG }}
UPSTREAM_REPO: ${{ inputs.UPSTREAM_REPO }}
TRAVIS_COMMIT: ${{ inputs.TRAVIS_COMMIT }}
TRAVIS_REPO_SLUG: ${{ inputs.REPOSITORY }}
TRAVIS_PULL_REQUEST_SLUG: ${{ inputs.REPOSITORY }}
UPSTREAM_REPO: ${{ inputs.REPOSITORY }}
TRAVIS_COMMIT: ${{ inputs.SHA }}
TRAVIS_PULL_REQUEST_SHA: ${{ inputs.TRAVIS_PULL_REQUEST_SHA }}
TRAVIS_PULL_REQUEST: ${{ inputs.TRAVIS_PULL_REQUEST }}
UPSTREAM_SHA: ${{ inputs.UPSTREAM_SHA }}
4879 UPSTREAM_SHA: ${{ inputs.SHA }}
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
EVENT_MESSAGE: ${{ inputs.EVENT_MESSAGE }}
HOME: 'home/runner'
Expand Down
0