-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI: skip tests when only files in doc/web changes (github actions) #41310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
MarcoGorelli
merged 24 commits into
pandas-dev:master
from
ShaharNaveh:CI-action-on-change
Jun 12, 2021
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7eaca3f
CI: skip tests when only files in doc/web changes (github)
ed48829
Fixed yaml file indent
175eb94
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
644989c
Revert "CI: skip tests when only files in doc/web changes (github)"
719a524
CI: Don't run lint if only doc changes (github worklow)
2fa1f9a
CI: Don't run lint if only doc changes (azure)
b0dfb08
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
9c2fc06
Fix (ex|in)clude logic in azure templates
e459da3
Fixed small "typo"
e193ca1
Fix location of the "path" parameter
0c27427
Removed extra "trigger"
431a3a4
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
8910b6a
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
2bc89aa
Fix for comment
d5d531a
Fix for comment
0637ecb
Fix for comment
e283453
Fix for comment
3529f7d
Fix for comment
25ca63d
Fix for comment
ffd9d7e
Only ignore on "pull_request" not on "push"
0048e25
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
4fed568
Addresing comments
75a44f3
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
cae7f81
Merge remote-tracking branch 'upstream/master' into CI-action-on-change
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
branches: | ||
- master | ||
- 1.2.x | ||
paths-ignore: | ||
- "doc/**" | ||
|
||
env: | ||
PYTEST_WORKERS: "auto" | ||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
branches: | ||
- master | ||
- 1.2.x | ||
paths-ignore: | ||
- "doc/**" | ||
|
||
env: | ||
PYTEST_WORKERS: "auto" | ||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "doc/**" | ||
|
||
jobs: | ||
build: | ||
|
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason why the other have
doc/**
and this one hasdoc/*
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, because this is the "azure" CI, and the other files are related to the "github actions" CI.
I just copied the syntax from their examples in the docs, I haven't really tested the differences.