Skip to content

Commit 3eea753

Browse files
Prepared the pipeline for 5.x.x
1 parent b588824 commit 3eea753

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/integration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
SDK: javascript
3838
FULLSTACK_TEST_REPO: ${{ inputs.FULLSTACK_TEST_REPO }}
3939
BUILD_NUMBER: ${{ github.run_id }}
40-
TESTAPP_BRANCH: master
40+
TESTAPP_BRANCH: test-5.x.x
4141
GITHUB_TOKEN: ${{ secrets.CI_USER_TOKEN }}
4242
EVENT_TYPE: ${{ github.event_name }}
4343
GITHUB_CONTEXT: ${{ toJson(github) }}
@@ -53,4 +53,4 @@ jobs:
5353
run: |
5454
CLIENT=node home/runner/travisci-tools/trigger-script-with-status-update.sh
5555
# Run only browser builds when it's FSC not for FPS.
56-
[ "$FULLSTACK_TEST_REPO" == "ProdTesting" ] || CLIENT=browser home/runner/travisci-tools/trigger-script-with-status-update.sh
56+
[ "$FULLSTACK_TEST_REPO" == "ProdTesting" ] || CLIENT=browser home/runner/travisci-tools/trigger-script-with-status-update.sh

.github/workflows/javascript.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Javascript
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ 5.x.x ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ 5.x.x ]
88

99
jobs:
1010
lint_markdown_files:
11-
uses: optimizely/javascript-sdk/.github/workflows/lint_markdown.yml@master
11+
uses: optimizely/javascript-sdk/.github/workflows/lint_markdown.yml@5.x.x
1212

1313
lint:
1414
runs-on: ubuntu-latest
@@ -27,13 +27,13 @@ jobs:
2727
npm run lint
2828
2929
integration_tests:
30-
uses: optimizely/javascript-sdk/.github/workflows/integration_test.yml@master
30+
uses: optimizely/javascript-sdk/.github/workflows/integration_test.yml@5.x.x
3131
secrets:
3232
CI_USER_TOKEN: ${{ secrets.CI_USER_TOKEN }}
3333
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
3434

3535
fullstack_production_suite:
36-
uses: optimizely/javascript-sdk/.github/workflows/integration_test.yml@master
36+
uses: optimizely/javascript-sdk/.github/workflows/integration_test.yml@5.x.x
3737
with:
3838
FULLSTACK_TEST_REPO: ProdTesting
3939
secrets:

0 commit comments

Comments
 (0)