From 147393322f05585df2e45cc1fb6a789b640bea8e Mon Sep 17 00:00:00 2001 From: ScottW514 Date: Tue, 15 Sep 2026 20:21:44 -0400 Subject: [PATCH] CI: run the push workflows on master only, not on tag pushes on: push had a paths filter but no branch restriction, so a tag push (a release's v tag) re-ran forgetest-ci and fixture-ci on the commit master had already tested - a tag push bypasses the paths filter. branches: [master] scopes the push trigger to the branch; pull_request and workflow_dispatch are unchanged. --- .github/workflows/fixture-ci.yml | 1 + .github/workflows/forgetest-ci.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/fixture-ci.yml b/.github/workflows/fixture-ci.yml index adf1e73..a121c84 100644 --- a/.github/workflows/fixture-ci.yml +++ b/.github/workflows/fixture-ci.yml @@ -11,6 +11,7 @@ name: fixture-ci on: push: + branches: [master] paths: - 'fixture/**' - '.github/workflows/fixture-ci.yml' diff --git a/.github/workflows/forgetest-ci.yml b/.github/workflows/forgetest-ci.yml index bca2537..4398ff8 100644 --- a/.github/workflows/forgetest-ci.yml +++ b/.github/workflows/forgetest-ci.yml @@ -20,6 +20,7 @@ name: forgetest-ci on: push: + branches: [master] paths: - 'forgetest/**' - 'scripts/acceptance-gate.py'