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 3e5da6a commit 5b97a72Copy full SHA for 5b97a72
.github/workflows/test-bed.yml
@@ -11,7 +11,7 @@ on:
11
disabled-feature-branches:
12
# GH doesn't have list inputs so we're using a string
13
description: Feature branches for which syncing will be disabled, separated by comma (e.g. feat-1-main,feat-2-main)
14
- default: ""
+ default: "feat-1-main"
15
16
jobs:
17
test:
@@ -40,7 +40,7 @@ jobs:
40
git fetch --all
41
42
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
+ for feature_branch in $(git branch -r --list "*-main"); do
44
echo "Found: $feature_branch"
45
46
for disabled_feature_branch in "${disabled_feature_branches[@]}"; do
0 commit comments