Skip to content

Commit 537203a

Browse files
Matus Kasakclaude
andcommitted
CI/Add dtq-dev-9-base to nightly UI-test trigger
Append dtq-dev-9-base to the branch list in trigger-ui-tests.yml so the nightly job dispatches playwright-tests.yml for it alongside the customer/* branches. The awk parser emits "dtq-dev-9-base/" for a non-namespaced branch, so it cannot be picked up by the customer/ grep and is added explicitly. Also includes a pre-existing working-tree edit adding customer/sav to SKIP_BRANCHES. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent d0897c2 commit 537203a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/trigger-ui-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ jobs:
2424
2525
git fetch --prune origin
2626
BRANCHES=$(git ls-remote --heads origin | awk -F'/' '{print $3"/"$4}' | grep '^customer/')
27-
SKIP_BRANCHES=("customer/uk" "customer/mendelu-v7" "customer/palo-docker" "customer/palo-docker-rebase" "customer/palo-docker-typo-fix")
27+
BRANCHES="$BRANCHES"$'\n'"dtq-dev-9-base"
28+
SKIP_BRANCHES=("customer/sav" "customer/uk" "customer/mendelu-v7" "customer/palo-docker" "customer/palo-docker-rebase" "customer/palo-docker-typo-fix")
2829
2930
for branch in $(echo "$BRANCHES" | sed -e 's/[\[\]"]//g' -e 's/,/\n/g'); do
3031
if [[ " ${SKIP_BRANCHES[@]} " =~ " ${branch} " ]]; then

0 commit comments

Comments
 (0)