fix(ci): add uat branch to workflow triggers #9

Merged
Savannah Savings merged 1 commits from savannah/fix-ci-uat-trigger into dev 2026-05-21 14:39:00 +00:00
Member

Summary

Add uat to CI workflow trigger branches so CI fires on uat pushes/PRs.

  • on.push.branches: [main, dev][main, dev, uat]
  • on.pull_request.branches: [main, dev][main, dev, uat]

Context: The deploy-uat job already has the correct if condition for refs/heads/uat, but the workflow never triggered on uat pushes because uat was missing from the top-level triggers. This caused zero CI runs on the uat branch after PR #7 merged dev → uat.

Fixes [CAR-924], supersedes Betty's earlier attempt on the wrong file path.

cc @cpfarhood

## Summary Add `uat` to CI workflow trigger branches so CI fires on uat pushes/PRs. - `on.push.branches`: `[main, dev]` → `[main, dev, uat]` - `on.pull_request.branches`: `[main, dev]` → `[main, dev, uat]` **Context:** The `deploy-uat` job already has the correct `if` condition for `refs/heads/uat`, but the workflow never triggered on uat pushes because `uat` was missing from the top-level triggers. This caused zero CI runs on the `uat` branch after PR #7 merged `dev → uat`. Fixes [CAR-924], supersedes Betty's earlier attempt on the wrong file path. cc @cpfarhood
Savannah Savings added 1 commit 2026-05-21 14:38:04 +00:00
fix(ci): add uat branch to workflow triggers
CI / test (pull_request) Failing after 0s
CI / lint (pull_request) Failing after 4s
CI / build-and-push (pull_request) Has been skipped
CI / deploy-dev (pull_request) Has been skipped
CI / deploy-uat (pull_request) Has been skipped
CI / typecheck (pull_request) Failing after 17s
e429786696
The on.push and on.pull_request triggers only listed [main, dev].
The deploy-uat job condition checks for refs/heads/uat but the
workflow never fires on uat pushes. Add uat to both trigger lists.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
Savannah Savings merged commit 7fd8e90b9c into dev 2026-05-21 14:39:00 +00:00
Sign in to join this conversation.