ci: ignore github markdown templates in all workflows

Ensure that the following paths are ignored everywhere:

- '.github/ISSUE_TEMPLATE/*'
- .github/pull_request_template.md

To avoid running CI unnecessarily.

Currently, they're only ignored on .github/workflows/build-extra.yml.
This commit is contained in:
Kelvin M. Klann 2022-07-12 19:35:32 -03:00
parent 9bf5e453c6
commit 78ab34341a
2 changed files with 8 additions and 0 deletions

View file

@ -4,7 +4,9 @@ on:
push:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- .git-blame-ignore-revs
- .github/pull_request_template.md
- .gitignore
- CONTRIBUTING.md
- COPYING
@ -15,7 +17,9 @@ on:
pull_request:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- .git-blame-ignore-revs
- .github/pull_request_template.md
- .gitignore
- CONTRIBUTING.md
- COPYING

View file

@ -9,8 +9,10 @@ on:
push:
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- 'etc/**'
- .git-blame-ignore-revs
- .github/pull_request_template.md
- .gitignore
- CONTRIBUTING.md
- COPYING
@ -22,8 +24,10 @@ on:
# The branches below must be a subset of the branches above
branches: [ master ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/*'
- 'etc/**'
- .git-blame-ignore-revs
- .github/pull_request_template.md
- .gitignore
- CONTRIBUTING.md
- COPYING