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.
1 parent 8154292 commit 2a0d1aaCopy full SHA for 2a0d1aa
.github/workflows/sync-dev-to-vX.Y-dev.yaml
@@ -14,7 +14,7 @@ on:
14
- main-workflow-sync-dev-to-vX.Y-dev #TODO: remove after testing
15
16
jobs:
17
- sync-branch:
+ sync-branches:
18
runs-on: ubuntu-latest
19
steps:
20
- name: Checkout repository
@@ -25,8 +25,10 @@ jobs:
25
shell: bash
26
run: |
27
DEV_BRANCHES=$(git branch -r --list origin/v?.?-dev)
28
+ echo "DEV_BRANCHES=$DEV_BRANCHES"
29
for DEV_BRANCH in $DEV_BRANCHES; do
30
BASE=${DEV_BRANCH:7}
31
+ echo "BASE=$BASE"
32
EXISTS=$(gh pr list --base $BASE --head $HEAD \
33
--json number --jq '.[] | .number')
34
if [ ! -z "$EXISTS" ]; then
0 commit comments