Skip to content

Commit 7234b88

Browse files
committed
Fix CI workflow to run on all PRs
Remove the `branches: ["*"]` filter from the pull_request trigger. The glob pattern `*` doesn't match `/`, so PRs targeting branches with slashes (like feature/...) were not triggering the workflow. By removing the filter, the workflow now runs on all PRs regardless of target branch, while still not running on post-merge to main (since there's no push trigger).
1 parent 9565e3b commit 7234b88

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

.github/workflows/validate.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Validate
22

33
on:
44
pull_request:
5-
branches: ["*"]
65

76
jobs:
87
tests:

0 commit comments

Comments
 (0)