From 35c1ed3d381f9ce2938cc40ec50894164b722d8d Mon Sep 17 00:00:00 2001 From: SatoshiQaziMuhammed Date: Thu, 9 Jul 2026 04:31:39 -0700 Subject: [PATCH] fix: trigger CI workflows on master, not just main (#39) master is where real development happens and gets pushed to directly (main is the auto-synced mirror) - branch protection was just added to master requiring these exact check contexts, but the workflows only fired for PRs/pushes targeting main, so the required checks could never actually run for a master PR, permanently blocking every future merge. --- .github/workflows/code-quality.yml | 4 ++-- .github/workflows/security.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index bfe92e5..a19f9ba 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -2,9 +2,9 @@ name: Code Quality on: push: - branches: [main] + branches: [main, master] pull_request: - branches: [main] + branches: [main, master] jobs: python-lint: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index f97fb1e..a62f6c0 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -2,9 +2,9 @@ name: Security on: push: - branches: [main] + branches: [main, master] pull_request: - branches: [main] + branches: [main, master] schedule: - cron: '0 6 * * 1'