[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'
This commit is contained in:
Patrick Lodder 2021-06-27 20:20:35 +02:00
parent 7921b36a7d
commit 291af5847d
No known key found for this signature in database
GPG key ID: 2D3A345B98D0DC1F

View file

@ -1,8 +1,14 @@
name: Continuous Integration
on:
- push
- pull_request
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- 'doc/**'
- 'contrib/**'
- '**/*.md'
jobs:
build: