From 74e3d3891b4b341bb4f2870d88ab7765dee07925 Mon Sep 17 00:00:00 2001 From: Shawn Miller Date: Tue, 4 Aug 2026 01:31:18 -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 5c8885b..c5bdbbd 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: