build: Ignore CI workflows for markdown files
Running all CI tests at pull requests for some files is sub-optimal, when a PR contain changes to a single file not checked by the tests. Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
This commit is contained in:
parent
f15d9c3825
commit
2ea8896c0b
|
@ -3,6 +3,10 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths-ignore:
|
||||
- 'CHANGELOG.md'
|
||||
- 'README.md'
|
||||
- 'MAINTAINERS'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
@ -2,6 +2,10 @@ name: e2e
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'CHANGELOG.md'
|
||||
- 'README.md'
|
||||
- 'MAINTAINERS'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
|
|
@ -2,6 +2,11 @@ name: tests
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'CHANGELOG.md'
|
||||
- 'README.md'
|
||||
- 'MAINTAINERS'
|
||||
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
|
|
@ -2,6 +2,11 @@ name: verify
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'CHANGELOG.md'
|
||||
- 'README.md'
|
||||
- 'MAINTAINERS'
|
||||
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
|
Loading…
Reference in New Issue