Skip to content

Commit

Permalink
ci: Run on PRs against all base branches
Browse files Browse the repository at this point in the history
`*` doesn't match `/`:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet

With stacked PRs, the base branch could be `prashant/base`, which
doesn't currently match, and hence wasn't running CI.
  • Loading branch information
prashantv committed Nov 10, 2024
1 parent 7c2b916 commit 30466ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [main]
pull_request:
branches: ['*']
branches: ['**']
types:
# On by default if types not specified:
- "opened"
Expand Down

0 comments on commit 30466ab

Please sign in to comment.