Skip to content

Commit 7e286ac

Browse files
committed
logging
1 parent afbe407 commit 7e286ac

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test-bed.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)