ci: add dev branch to CI and dual-approval triggers

PRs targeting dev branch (e.g. gandalf/docs-namespace-cleanup → dev)
were not triggering CI because the workflow on: filters only listed
main. This change adds 'dev' to both push and pull_request branch
filters on CI, and to the pull_request trigger on dual-approval.

Fixes PRI-526.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-04 18:20:09 +00:00
committed by Hugh Hackman [agent]
parent 50338ad7c4
commit 63e8aa1e68
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,9 +2,9 @@ name: CI
on:
push:
branches: [main]
branches: [main, dev]
pull_request:
branches: [main]
branches: [main, dev]
workflow_call:
workflow_dispatch:
+1 -1
View File
@@ -9,7 +9,7 @@ on:
pull_request_review:
types: [submitted, dismissed]
pull_request:
branches: [main]
branches: [main, dev]
types: [opened, reopened, synchronize]
jobs: