aboutsummaryrefslogtreecommitdiffstats
path: root/.github
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
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')
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--.github/workflows/codeql-analysis.yml4
2 files changed, 8 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
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 85110c17e..fa1ecfb84 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -9,8 +9,10 @@ on:
9 push: 9 push:
10 branches: [ master ] 10 branches: [ master ]
11 paths-ignore: 11 paths-ignore:
12 - '.github/ISSUE_TEMPLATE/*'
12 - 'etc/**' 13 - 'etc/**'
13 - .git-blame-ignore-revs 14 - .git-blame-ignore-revs
15 - .github/pull_request_template.md
14 - .gitignore 16 - .gitignore
15 - CONTRIBUTING.md 17 - CONTRIBUTING.md
16 - COPYING 18 - COPYING
@@ -22,8 +24,10 @@ on:
22 # The branches below must be a subset of the branches above 24 # The branches below must be a subset of the branches above
23 branches: [ master ] 25 branches: [ master ]
24 paths-ignore: 26 paths-ignore:
27 - '.github/ISSUE_TEMPLATE/*'
25 - 'etc/**' 28 - 'etc/**'
26 - .git-blame-ignore-revs 29 - .git-blame-ignore-revs
30 - .github/pull_request_template.md
27 - .gitignore 31 - .gitignore
28 - CONTRIBUTING.md 32 - CONTRIBUTING.md
29 - COPYING 33 - COPYING