aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/codeql-analysis.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-07-12 17:23:43 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-07-12 18:56:11 -0300
commitf46b6c09df3aee9f0cab39a411e7218e855fe6d7 (patch)
treee3c84dbe51f9d6af6455843e8e8e13545155b495 /.github/workflows/codeql-analysis.yml
parentRELNOTES: add build items (plus commands) (diff)
downloadfirejail-f46b6c09df3aee9f0cab39a411e7218e855fe6d7.tar.gz
firejail-f46b6c09df3aee9f0cab39a411e7218e855fe6d7.tar.zst
firejail-f46b6c09df3aee9f0cab39a411e7218e855fe6d7.zip
ci: ignore git-related paths and the project license
Add the following paths to the ignore lists: - .git-blame-ignore-revs - .gitignore - COPYING To avoid running CI unnecessarily. Commands used to show only the root files: $ git ls-files | grep -v / Misc: I noticed the missing paths on #5248.
Diffstat (limited to '.github/workflows/codeql-analysis.yml')
-rw-r--r--.github/workflows/codeql-analysis.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index d34a48aa3..fb5e7f9b3 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -9,7 +9,10 @@ on:
9 push: 9 push:
10 branches: [ master ] 10 branches: [ master ]
11 paths-ignore: 11 paths-ignore:
12 - .git-blame-ignore-revs
13 - .gitignore
12 - CONTRIBUTING.md 14 - CONTRIBUTING.md
15 - COPYING
13 - README 16 - README
14 - README.md 17 - README.md
15 - RELNOTES 18 - RELNOTES
@@ -19,7 +22,10 @@ on:
19 # The branches below must be a subset of the branches above 22 # The branches below must be a subset of the branches above
20 branches: [ master ] 23 branches: [ master ]
21 paths-ignore: 24 paths-ignore:
25 - .git-blame-ignore-revs
26 - .gitignore
22 - CONTRIBUTING.md 27 - CONTRIBUTING.md
28 - COPYING
23 - README 29 - README
24 - README.md 30 - README.md
25 - RELNOTES 31 - RELNOTES