diff options
| author | Patrick Lodder <[email protected]> | 2021-06-27 20:20:35 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2021-06-27 20:23:37 +0200 |
| commit | 291af5847d9c0fd99f0e88d4f4b1087b77c71d13 (patch) | |
| tree | 4c47612b9b67feae598e9a60807019525764f124 /.github/workflows | |
| parent | Merge pull request #2341 from patricklodder/1.14.4-actions-artifacts (diff) | |
| download | discoin-291af5847d9c0fd99f0e88d4f4b1087b77c71d13.tar.xz discoin-291af5847d9c0fd99f0e88d4f4b1087b77c71d13.zip | |
[qa] make CI less trigger happy
Do not run CI if all updated paths in a PR match:
- 'doc/**'
- 'contrib/**'
- '**/*.md'
and on push, if all updated paths match: '**/*.md'
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2a6b6423..5316a1eee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,14 @@ name: Continuous Integration on: - - push - - pull_request + push: + paths-ignore: + - '**/*.md' + pull_request: + paths-ignore: + - 'doc/**' + - 'contrib/**' + - '**/*.md' jobs: build: |