We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19b7fb8 commit 323103aCopy full SHA for 323103a
1 file changed
.github/workflows/trigger-ui-tests.yml
@@ -24,7 +24,14 @@ jobs:
24
25
git fetch --prune origin
26
BRANCHES=$(git ls-remote --heads origin | awk -F'/' '{print $3"/"$4}' | grep '^customer/')
27
+ SKIP_BRANCHES=("customer/sav" "customer/vsb-tuo" "customer/zcu-data")
28
+
29
for branch in $(echo "$BRANCHES" | sed -e 's/[\[\]"]//g' -e 's/,/\n/g'); do
30
+ if [[ " ${SKIP_BRANCHES[@]} " =~ " ${branch} " ]]; then
31
+ echo "Skipping branch $branch"
32
+ continue
33
+ fi
34
35
echo "Triggering UI tests for branch: $branch"
36
gh workflow run playwright-tests.yml --ref $branch
37
done
0 commit comments