Skip to content

Commit

Permalink
[CI] Run CI on all PRs (#4917)
Browse files Browse the repository at this point in the history
Currently PRs only get CI when the base branch is main or starts with
`dev-` but this changes it to run on all PRs which works better for when
using `git-pr-chain` where the base branch usually isn't main.
  • Loading branch information
peterbell10 authored Oct 15, 2024
1 parent ec0bd4a commit 55c9576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ name: Integration Tests
on:
workflow_dispatch:
pull_request:
# You can name your branch dev-foo to get CI runs.
branches: [main, 'dev-**']
branches-ignore: ['llvm-**']
merge_group:
branches: [main, 'dev-**']
types: [checks_requested]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/integration-tests.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ name: Integration Tests
on:
workflow_dispatch:
pull_request:
# You can name your branch dev-foo to get CI runs.
branches: [main, 'dev-**']
branches-ignore: ['llvm-**']
merge_group:
branches: [main, 'dev-**']
types: [checks_requested]
Expand Down

0 comments on commit 55c9576

Please sign in to comment.