aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-07-12 19:35:32 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-24 19:22:38 -0300
commit78ab34341a4ae94391c594500c74f4d9d63e6904 (patch)
treee4782b2a77dffe935f9017e5e5abab19257cecc3 /.github/workflows/build.yml
parentci: sort items on paths-ignore lists (diff)
downloadfirejail-78ab34341a4ae94391c594500c74f4d9d63e6904.tar.gz
firejail-78ab34341a4ae94391c594500c74f4d9d63e6904.tar.zst
firejail-78ab34341a4ae94391c594500c74f4d9d63e6904.zip
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.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6612e256d..da2bea60f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -4,7 +4,9 @@ on:
4 push: 4 push:
5 branches: [ master ] 5 branches: [ master ]
6 paths-ignore: 6 paths-ignore:
7 - '.github/ISSUE_TEMPLATE/*'
7 - .git-blame-ignore-revs 8 - .git-blame-ignore-revs
9 - .github/pull_request_template.md
8 - .gitignore 10 - .gitignore
9 - CONTRIBUTING.md 11 - CONTRIBUTING.md
10 - COPYING 12 - COPYING
@@ -15,7 +17,9 @@ on:
15 pull_request: 17 pull_request:
16 branches: [ master ] 18 branches: [ master ]
17 paths-ignore: 19 paths-ignore:
20 - '.github/ISSUE_TEMPLATE/*'
18 - .git-blame-ignore-revs 21 - .git-blame-ignore-revs
22 - .github/pull_request_template.md
19 - .gitignore 23 - .gitignore
20 - CONTRIBUTING.md 24 - CONTRIBUTING.md
21 - COPYING 25 - COPYING