From 3a71b2dbb72a1cbd3bdee9adec16e9f6ebad1534 Mon Sep 17 00:00:00 2001 From: Shawn Miller Date: Tue, 4 Aug 2026 01:31:17 -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 810f6ed..285d40b 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: