From 065a938da3c07ea08345a2940b4e6fd91b60df2e Mon Sep 17 00:00:00 2001 From: Ryan Lee Date: Fri, 21 Aug 2026 03:41:37 +0000 Subject: [PATCH] fix(ci): trigger on master branch, not nonexistent main The default branch is master; the push trigger named main, so pushes to the default branch never ran CI. Only the pull_request trigger fired (e.g. during PR #11). Point the push trigger at master so the gate runs on every default- branch push. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 124bdf3..df5277d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main] + branches: [master] pull_request: jobs: