We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 51966cb + 52a11bb commit ed00d91Copy full SHA for ed00d91
.github/workflows/branch-sync.yaml
@@ -21,7 +21,8 @@ jobs:
21
22
- name: Merge master into release
23
run: |
24
- BRANCH_NAME="redhat-3.15"
+ BRANCH_NAME="${{ vars.BRANCH_SYNC_TARGET }}"
25
+ if [ -z "$BRANCH_NAME" ]; then echo "BRANCH_SYNC_TARGET variable is not set" && exit 1; fi
26
echo "Syncing master to $BRANCH_NAME"
27
git checkout master
28
git pull origin master
0 commit comments