Skip to content

Commit 0eae486

Browse files
committed
Run Tests on PRs regardless of base branch
`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
1 parent 3314aa6 commit 0eae486

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Tests
22

3+
# No branch filter: `branches: ['*']` would skip PRs whose base branch
4+
# contains a slash, since the `*` glob does not match `/`.
35
on:
46
pull_request:
5-
branches: ['*']
67

78
jobs:
89
unit-tests:

0 commit comments

Comments
 (0)