Exclude changes on markup files to trigger CI runs in master (#4084)

Fixes #4082

This tested fine in a fork, under various scenarios combining:
- Modify markup file in root dir
- Modify markup file in subdir
- Modify non-markup file
- In master
- In a PR
This commit is contained in:
Alejandro Pedraza 2020-02-24 13:50:35 -05:00 committed by GitHub
parent f9b940e89d
commit 2ad141d27a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 0 deletions

View File

@ -1,6 +1,9 @@
name: Cloud integration
on:
push:
paths-ignore:
- '*.md'
- '**/*.md'
branches:
- master
jobs:

View File

@ -2,6 +2,9 @@ name: KinD integration
on:
pull_request: {}
push:
paths-ignore:
- '*.md'
- '**/*.md'
branches:
- master
jobs:

View File

@ -2,6 +2,9 @@ name: Static checks
on:
pull_request: {}
push:
paths-ignore:
- '*.md'
- '**/*.md'
branches:
- master
jobs:

View File

@ -2,6 +2,9 @@ name: Unit tests
on:
pull_request: {}
push:
paths-ignore:
- '*.md'
- '**/*.md'
branches:
- master
jobs: