aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/codeql-analysis.yml
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-11-25 11:23:44 -0500
committerLibravatar GitHub <noreply@github.com>2022-11-25 11:23:44 -0500
commit1f1dcf08ab38467fb47ac2dd0dcc1e5c9e57d5c9 (patch)
tree0238435a4e09ca1da1a2b253f074a14e1cd53558 /.github/workflows/codeql-analysis.yml
parentMerge pull request #5484 from glitsj16/localtime-fix (diff)
parentci: ignore man/vim paths in build-extra/codeql workflows (diff)
downloadfirejail-1f1dcf08ab38467fb47ac2dd0dcc1e5c9e57d5c9.tar.gz
firejail-1f1dcf08ab38467fb47ac2dd0dcc1e5c9e57d5c9.tar.zst
firejail-1f1dcf08ab38467fb47ac2dd0dcc1e5c9e57d5c9.zip
Merge pull request #5481 from kmk3/ci-sort-ignore-paths
ci: sort and ignore more paths
Diffstat (limited to '.github/workflows/codeql-analysis.yml')
-rw-r--r--.github/workflows/codeql-analysis.yml18
1 files changed, 16 insertions, 2 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 2190c9a1d..ad19c9530 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -9,28 +9,42 @@ on:
9 push: 9 push:
10 branches: [ master ] 10 branches: [ master ]
11 paths-ignore: 11 paths-ignore:
12 - '.github/ISSUE_TEMPLATE/*'
13 - 'etc/**'
14 - 'contrib/vim/**'
15 - 'src/man/*.txt'
12 - .git-blame-ignore-revs 16 - .git-blame-ignore-revs
17 - .github/dependabot.yml
18 - .github/pull_request_template.md
13 - .gitignore 19 - .gitignore
20 - .gitlab-ci.yml
14 - CONTRIBUTING.md 21 - CONTRIBUTING.md
15 - COPYING 22 - COPYING
16 - README 23 - README
17 - README.md 24 - README.md
18 - RELNOTES 25 - RELNOTES
19 - SECURITY.md 26 - SECURITY.md
20 - 'etc/**' 27 - src/firecfg/firecfg.config
21 pull_request: 28 pull_request:
22 # The branches below must be a subset of the branches above 29 # The branches below must be a subset of the branches above
23 branches: [ master ] 30 branches: [ master ]
24 paths-ignore: 31 paths-ignore:
32 - '.github/ISSUE_TEMPLATE/*'
33 - 'etc/**'
34 - 'contrib/vim/**'
35 - 'src/man/*.txt'
25 - .git-blame-ignore-revs 36 - .git-blame-ignore-revs
37 - .github/dependabot.yml
38 - .github/pull_request_template.md
26 - .gitignore 39 - .gitignore
40 - .gitlab-ci.yml
27 - CONTRIBUTING.md 41 - CONTRIBUTING.md
28 - COPYING 42 - COPYING
29 - README 43 - README
30 - README.md 44 - README.md
31 - RELNOTES 45 - RELNOTES
32 - SECURITY.md 46 - SECURITY.md
33 - 'etc/**' 47 - src/firecfg/firecfg.config
34 schedule: 48 schedule:
35 - cron: '0 7 * * 2' 49 - cron: '0 7 * * 2'
36 50