From 3f1d11a29fad46fbfa54482dd0a47b157c4bb394 Mon Sep 17 00:00:00 2001 From: Shawn Miller Date: Tue, 4 Aug 2026 01:31:19 -0500 Subject: [PATCH] Scope the push trigger to main to dedupe PR test runs Unscoped push + pull_request fired two Test runs per PR commit, doubling live-API load and requiring both twin checks to pass before merge. Co-Authored-By: Claude Fable 5 --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70e7097..4b19d12 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,11 @@ name: Test -on: [push, pull_request, workflow_dispatch] +on: + pull_request: + push: + branches: + - main + workflow_dispatch: jobs: test: