Skip to content

Commit 0a42ec8

Browse files
fix(actions): set the develop branch as replication (#350)
Signed-off-by: shubham <[email protected]>
1 parent ec0ecf9 commit 0a42ec8

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
BRANCH="${GITHUB_REF##*/}"
4343
CI_TAG=${BRANCH#v}-ci
44-
if [ ${BRANCH} = "master" ]; then
44+
if [ ${BRANCH} = "replication" ]; then
4545
CI_TAG="ci"
4646
fi
4747
echo "::set-env name=TAG::${CI_TAG}"

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
pull_request:
1919
branches:
2020
# on pull requests to master and release branches
21-
- master
21+
- replication
2222
- 'v*'
2323

2424
jobs:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix(actions): set the develop branch as replication

0 commit comments

Comments
 (0)