mirror of https://github.com/linkerd/linkerd2.git
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:
parent
f9b940e89d
commit
2ad141d27a
|
@ -1,6 +1,9 @@
|
|||
name: Cloud integration
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
- '**/*.md'
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
|
|
|
@ -2,6 +2,9 @@ name: KinD integration
|
|||
on:
|
||||
pull_request: {}
|
||||
push:
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
- '**/*.md'
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
|
|
|
@ -2,6 +2,9 @@ name: Static checks
|
|||
on:
|
||||
pull_request: {}
|
||||
push:
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
- '**/*.md'
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
|
|
|
@ -2,6 +2,9 @@ name: Unit tests
|
|||
on:
|
||||
pull_request: {}
|
||||
push:
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
- '**/*.md'
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
|
|
Loading…
Reference in New Issue