From e7e0f558ba93683580e204ca1d9adef46edebc8d Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 9 Jun 2026 21:43:28 +0000 Subject: [PATCH] Run Tests on PRs regardless of base branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `branches: ['*']` looks like "all branches" but the `*` glob does not match `/`, so the Tests workflow silently skipped any PR whose base branch contains a slash (e.g. a stacked PR based on another PR's claude/... branch). Drop the filter; a bare pull_request trigger covers every base branch. 🤖 Generated with [Claude Code](https://claude.com/claude-code) https://claude.ai/code/session_01JHvKryT4QUpHYdNq9YEQxX --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c524c79..44d3915 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,7 +2,6 @@ name: Tests on: pull_request: - branches: ['*'] jobs: unit-tests: