-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Run workflows on all pull requests, not only the ones to
main
b…
…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
1 parent
38c6c5b
commit 2516bca
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Build | |
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- "*" | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Integration tests | |
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- "*" | ||
|
||
jobs: | ||
integration-tests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Quality Checks | |
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- "*" | ||
|
||
jobs: | ||
lychee-link-check: | ||
|