From 5f53bf4cc0c921af9d5513510f2703b7afa1bb89 Mon Sep 17 00:00:00 2001 From: Jason Crabtree Date: Mon, 18 May 2026 23:14:40 -0400 Subject: [PATCH 1/2] fix(ci): align workflow push trigger with master default branch Per P264e fleet-wide audit of branches-main-master-mismatch-pattern. Default branch is master; trigger was main-only (silent failure mode). Now permissive to accept both: [main, master]. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release-please.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index caf83631f0..abafd2a9dc 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -5,6 +5,7 @@ on: push: branches: - main + - master concurrency: group: release-please-${{ github.ref }} From cfdf3f02bfd264339a950afa57d39ef67b578c02 Mon Sep 17 00:00:00 2001 From: Jason Crabtree Date: Mon, 18 May 2026 23:14:41 -0400 Subject: [PATCH 2/2] fix(ci): align workflow push trigger with master default branch Per P264e fleet-wide audit of branches-main-master-mismatch-pattern. Default branch is master; trigger was main-only (silent failure mode). Now permissive to accept both: [main, master]. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/trivy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index e58070486d..7a15ac70dc 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -3,9 +3,9 @@ name: Trivy Security Scan on: push: - branches: ["main"] + branches: ["main", "master"] pull_request: - branches: ["main"] + branches: ["main", "master"] schedule: - cron: "0 4 * * 1" # Weekly Monday