From 3c3ce3f5ee755ce9030725efd5a80f30cb9640ac Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Jul 2026 12:12:07 +0000 Subject: [PATCH] Run push CI only on main to stop duplicate PR runs Every push to a pull request branch triggered the Windows plugin test job twice (push + pull_request events have distinct concurrency refs, so neither run was cancelled). Limit the push trigger to main; PR branches keep full coverage through the pull_request event. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Ai9gkWPczQLa8CY5rQ3Nsd --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a54ec7..ab1014d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,8 @@ name: CI on: push: + branches: + - main pull_request: workflow_dispatch: