Skip to content

Commit

Permalink
ci: Run workflows on all pull requests, not only the ones to main b…
Browse files Browse the repository at this point in the history
…ranch

We are often making pull requests to branches other than `main`. In
such case, before this change, we weren't sure whether such "stacked PRs"
are passing the CI tests.
  • Loading branch information
vadorovsky committed Jun 24, 2024
1 parent 38c6c5b commit 2516bca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build
on:
pull_request:
branches:
- main
- "*"

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Integration tests
on:
pull_request:
branches:
- main
- "*"

jobs:
integration-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Quality Checks
on:
pull_request:
branches:
- main
- "*"

jobs:
lychee-link-check:
Expand Down

0 comments on commit 2516bca

Please sign in to comment.