diff options
| author | Ross Nicoll <[email protected]> | 2021-06-27 20:19:45 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-27 20:19:45 +0100 |
| commit | 3f736fd61f0d8742067cade39e23307c33e3a9ad (patch) | |
| tree | 4c47612b9b67feae598e9a60807019525764f124 | |
| parent | Merge pull request #2341 from patricklodder/1.14.4-actions-artifacts (diff) | |
| parent | [qa] make CI less trigger happy (diff) | |
| download | archived-discoin-3f736fd61f0d8742067cade39e23307c33e3a9ad.tar.xz archived-discoin-3f736fd61f0d8742067cade39e23307c33e3a9ad.zip | |
Merge pull request #2345 from patricklodder/1.14-actions-reduce-triggers
[qa] Make GH Actions CI less trigger happy
| -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: |