From 63e8aa1e687bb52a7faebe4ded8ce1ede35b4842 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 4 May 2026 18:20:09 +0000 Subject: [PATCH] ci: add dev branch to CI and dual-approval triggers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/dual-approval.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b2f3ef6..601c8ce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [main] + branches: [main, dev] pull_request: - branches: [main] + branches: [main, dev] workflow_call: workflow_dispatch: diff --git a/.github/workflows/dual-approval.yaml b/.github/workflows/dual-approval.yaml index c4a96cf..23aa528 100644 --- a/.github/workflows/dual-approval.yaml +++ b/.github/workflows/dual-approval.yaml @@ -9,7 +9,7 @@ on: pull_request_review: types: [submitted, dismissed] pull_request: - branches: [main] + branches: [main, dev] types: [opened, reopened, synchronize] jobs: -- 2.52.0