You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skip workflows if only non-source-code files are changed (#839)
Skip workflows in PRs if **ONLY** the following are changed:
```
- 'doc/**'
- '*.md'
- '*.json'
- 'README.rst'
- 'LICENSE.txt'
```
Any other changes (especially changes in `pygmt/` and `examples/`) still trigger the workflows.
**Notes:**
- `examples/` directory is not excluded because some examples may pass on one OS but fail on another one.
- the workflow is always triggered in the master branch even though only plaintext files are changed
Fixes#837.
Reference: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestpaths
0 commit comments