File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -29,15 +29,21 @@ jobs:
2929 - name : Merge main into feature branches
3030 shell : bash
3131 run : |
32- echo "Parsing disabled feature branches"
3332 unparsed_disabled_feature_branches="${{ inputs.disabled-feature-branches }}"
33+ echo "Unparsed disabled feature branches: $unparsed_disabled_feature_branches"
34+ echo "Parsing disabled feature branches"
3435 IFS=',' read -r -a disabled_feature_branches <<< "$unparsed_disabled_feature_branches"
3536 for i in "${!disabled_feature_branches[@]}"; do
37+ echo "Parsing branch ${disabled_feature_branches[i]}"
3638 disabled_feature_branches[i]=$(echo "${disabled_feature_branches[i]}" | xargs)
3739 echo "Found: $disabled_feature_branches[i]"
3840 done
3941
42+ echo "Done parsing feature branches"
43+
44+ echo "Fetching all"
4045 git fetch --all
46+ echo "Done fetching all"
4147
4248 echo "Iterating through feature branches"
4349 for feature_branch in $(git branch -r --list "*-main"); do
You can’t perform that action at this time.
0 commit comments