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.
This commit is contained in:
2026-07-09 04:31:39 -07:00
committed by GitHub
parent 38c84f901f
commit 35c1ed3d38
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -2,9 +2,9 @@ name: Code Quality
on:
push:
branches: [main]
branches: [main, master]
pull_request:
branches: [main]
branches: [main, master]
jobs:
python-lint:
+2 -2
View File
@@ -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'