From e398cfc389b12d495fd7cb3e16d9770e43129490 Mon Sep 17 00:00:00 2001 From: Matthew Fishman Date: Wed, 9 Sep 2026 18:39:12 -0400 Subject: [PATCH] Run Tests on release branches Adds a `release-*` push trigger to `Tests.yml` so pushes to this release branch run the test suite. A push runs this branch's own copy of the workflow, so widening the filter on `main` does not cover it. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/Tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 5a0a3064..2a143860 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -5,6 +5,7 @@ on: - 'master' - 'main' - 'release-' + - "release-*" tags: '*' paths-ignore: - 'docs/**'