Skip to content

Commit 2a0d1aa

Browse files
committed
Update sync-dev-to-vX.Y-dev.yaml
1 parent 8154292 commit 2a0d1aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/sync-dev-to-vX.Y-dev.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- main-workflow-sync-dev-to-vX.Y-dev #TODO: remove after testing
1515

1616
jobs:
17-
sync-branch:
17+
sync-branches:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout repository
@@ -25,8 +25,10 @@ jobs:
2525
shell: bash
2626
run: |
2727
DEV_BRANCHES=$(git branch -r --list origin/v?.?-dev)
28+
echo "DEV_BRANCHES=$DEV_BRANCHES"
2829
for DEV_BRANCH in $DEV_BRANCHES; do
2930
BASE=${DEV_BRANCH:7}
31+
echo "BASE=$BASE"
3032
EXISTS=$(gh pr list --base $BASE --head $HEAD \
3133
--json number --jq '.[] | .number')
3234
if [ ! -z "$EXISTS" ]; then

0 commit comments

Comments
 (0)