From 6e0a3888106de00fd60649239c07c82da85664ca Mon Sep 17 00:00:00 2001 From: ProtocolWarden Date: Sun, 14 Jun 2026 12:41:45 -0400 Subject: [PATCH] fix(ci): expand custodian-audit push trigger to all branches GitHub does not send pull_request:synchronize events for CONFLICTING PRs. Without push: branches: ["**"], the audit check never runs for PR branch pushes, leaving "audit" absent from the check suite and blocking the review watcher's ci_wait loop indefinitely. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/custodian-audit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/custodian-audit.yml b/.github/workflows/custodian-audit.yml index e2793519d..d9caf537a 100644 --- a/.github/workflows/custodian-audit.yml +++ b/.github/workflows/custodian-audit.yml @@ -2,7 +2,7 @@ name: custodian-audit on: push: - branches: [main] + branches: ["**"] pull_request: branches: [main]