From 53f8a476a9fee36f10aa69350c0402930589f2d4 Mon Sep 17 00:00:00 2001 From: Levon Becker Date: Wed, 29 Jul 2026 21:19:20 -0700 Subject: [PATCH] Add push trigger on main so the README Tests badge stays current MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tests.yml only ran on pull_request, so merging a PR (a push to main) never generated a new run for main itself. The badge shows the latest run associated with main, which was stuck on a stale failure from before the check_agents CI fix landed — every merge since had passed on its feature branch but never re-validated main. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 90d19bd..3c47e7e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,6 +7,9 @@ on: branches: - development # Trigger on PRs targeting development - main # Trigger on PRs targeting main + push: + branches: + - main # Keep the status badge current after every merge jobs: # https://github.com/rhysd/actionlint