-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change trigger rules to activate paths filter
Previously there were two trigger conditions (PRs and pushes to main). With the change all pushes (to PR branches or main) trigger it, and the `paths:` filter applies every time. This is a follow-up to #5364.
- Loading branch information
1 parent
80f8195
commit ae77f7d
Showing
4 changed files
with
0 additions
and
8 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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: arviz-compatibility | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ".github/workflows/*" | ||
- "pymc/**" | ||
|
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: jax-sampling | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ".github/workflows/*" | ||
- "pymc/**" | ||
|
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: pre-commit | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
pre-commit: | ||
|
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: pytest | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ".github/workflows/*" | ||
- "pymc/**" | ||
|