From f3533af16d81609b0066dbf2211c75b7b46b90df Mon Sep 17 00:00:00 2001 From: Dex Date: Wed, 22 Apr 2026 12:29:43 -0400 Subject: [PATCH] Run CI on push to main so the badge stays current The badge URL includes ?branch=main but CI only ran on pull_request, so no run was ever recorded against main and the badge showed no status. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6deedf6..ae3bcf3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,8 @@ name: CI on: + push: + branches: [ "main" ] pull_request: branches: [ "main" ]