From dee023c905b888a49a9a5d492d793cff62af7445 Mon Sep 17 00:00:00 2001 From: scottbrumley Date: Mon, 24 Nov 2025 11:22:12 -0500 Subject: [PATCH 1/2] Allow core branches (main/develop/staging) in branch name check --- .github/workflows/branch-guard.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/branch-guard.yml b/.github/workflows/branch-guard.yml index 4e5cd80..5106c58 100644 --- a/.github/workflows/branch-guard.yml +++ b/.github/workflows/branch-guard.yml @@ -9,6 +9,7 @@ jobs: # ⬇️ Skip this job when the source branch is main or develop if: > github.event.pull_request.head.ref != 'main' && + github.event.pull_request.head.ref != 'staging' && github.event.pull_request.head.ref != 'develop' runs-on: ubuntu-latest steps: From 458ec1187d380b566e37164b82a0d12068534bea Mon Sep 17 00:00:00 2001 From: scottbrumley Date: Mon, 24 Nov 2025 11:48:01 -0500 Subject: [PATCH 2/2] Allow core branches (main/develop/staging) in branch name check (#103) (#105) (#106)