From 9977bd9a7d294339251b1039d77d92d8a61e052d Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 17 Jul 2026 15:07:03 +0000 Subject: [PATCH] ci: run on pushes to main only Pull requests to main already get a full CI run, so the extra branch pattern in the push trigger only duplicated work. --- .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 a54b2f7..d75d123 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main, "claude/**"] + branches: [main] pull_request: branches: [main]