From 8160cf92303fc0b2c38b67f722f459d301242e93 Mon Sep 17 00:00:00 2001 From: Jason Crabtree Date: Mon, 18 May 2026 23:30:35 -0400 Subject: [PATCH 1/3] 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/go-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-ci.yml b/.github/workflows/go-ci.yml index dab8e630b7d..5f5acba59fd 100644 --- a/.github/workflows/go-ci.yml +++ b/.github/workflows/go-ci.yml @@ -3,9 +3,9 @@ name: Go CI on: push: - branches: [main] + branches: [main, master] pull_request: - branches: [main] + branches: [main, master] workflow_dispatch: concurrency: From 4712d97ef7cf11453b3d9c3b57eb683491fb18c2 Mon Sep 17 00:00:00 2001 From: Jason Crabtree Date: Mon, 18 May 2026 23:30:36 -0400 Subject: [PATCH 2/3] 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 7da43486f95..19a1f287774 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -5,6 +5,7 @@ on: push: branches: - main + - master workflow_dispatch: permissions: From 549d77a68e25ab8e13d58f5e90e51e40b43a8912 Mon Sep 17 00:00:00 2001 From: Jason Crabtree Date: Mon, 18 May 2026 23:30:37 -0400 Subject: [PATCH 3/3] 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 e58070486d6..7a15ac70dce 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