Skip to content

Commit 5b97a72

Browse files
committed
ci
1 parent 3e5da6a commit 5b97a72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-bed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
disabled-feature-branches:
1212
# GH doesn't have list inputs so we're using a string
1313
description: Feature branches for which syncing will be disabled, separated by comma (e.g. feat-1-main,feat-2-main)
14-
default: ""
14+
default: "feat-1-main"
1515

1616
jobs:
1717
test:
@@ -40,7 +40,7 @@ jobs:
4040
git fetch --all
4141
4242
echo "Iterating through feature branches"
43-
for feature_branch in $(git branch -r --list "*-main"); do # TODO: ALL OF THESE WILL HAVE "origin/" in front of them
43+
for feature_branch in $(git branch -r --list "*-main"); do
4444
echo "Found: $feature_branch"
4545
4646
for disabled_feature_branch in "${disabled_feature_branches[@]}"; do

0 commit comments

Comments
 (0)