aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-07-12 19:37:10 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2022-11-24 19:22:38 -0300
commita057c1ee4cb27163dbda9fe5b04730198f6b909a (patch)
tree35cb7d64ef70e39f48eaf7702b7b75058667ad9a
parentci: ignore dependabot and gitlab-ci in all workflows (diff)
downloadfirejail-a057c1ee4cb27163dbda9fe5b04730198f6b909a.tar.gz
firejail-a057c1ee4cb27163dbda9fe5b04730198f6b909a.tar.zst
firejail-a057c1ee4cb27163dbda9fe5b04730198f6b909a.zip
ci: ignore codeql workflow file in other workflows
Ensure that the following file is ignored everywhere, except on its own workflow: - .github/workflows/codeql-analysis.yml To avoid running CI unnecessarily. This should also make the CI checks finish faster on most PRs opened by dependabot, as they're often only about bumping the version of codeql-action and are opened about once a week (see .github/dependabot.yml).
-rw-r--r--.github/workflows/build-extra.yml2
-rw-r--r--.github/workflows/build.yml2
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 1b1855a1f..9ac991fea 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -9,6 +9,7 @@ on:
9 - .git-blame-ignore-revs 9 - .git-blame-ignore-revs
10 - .github/dependabot.yml 10 - .github/dependabot.yml
11 - .github/pull_request_template.md 11 - .github/pull_request_template.md
12 - .github/workflows/codeql-analysis.yml
12 - .gitignore 13 - .gitignore
13 - .gitlab-ci.yml 14 - .gitlab-ci.yml
14 - CONTRIBUTING.md 15 - CONTRIBUTING.md
@@ -26,6 +27,7 @@ on:
26 - .git-blame-ignore-revs 27 - .git-blame-ignore-revs
27 - .github/dependabot.yml 28 - .github/dependabot.yml
28 - .github/pull_request_template.md 29 - .github/pull_request_template.md
30 - .github/workflows/codeql-analysis.yml
29 - .gitignore 31 - .gitignore
30 - .gitlab-ci.yml 32 - .gitlab-ci.yml
31 - CONTRIBUTING.md 33 - CONTRIBUTING.md
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 172758399..3119f59b9 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,6 +8,7 @@ on:
8 - .git-blame-ignore-revs 8 - .git-blame-ignore-revs
9 - .github/dependabot.yml 9 - .github/dependabot.yml
10 - .github/pull_request_template.md 10 - .github/pull_request_template.md
11 - .github/workflows/codeql-analysis.yml
11 - .gitignore 12 - .gitignore
12 - .gitlab-ci.yml 13 - .gitlab-ci.yml
13 - CONTRIBUTING.md 14 - CONTRIBUTING.md
@@ -23,6 +24,7 @@ on:
23 - .git-blame-ignore-revs 24 - .git-blame-ignore-revs
24 - .github/dependabot.yml 25 - .github/dependabot.yml
25 - .github/pull_request_template.md 26 - .github/pull_request_template.md
27 - .github/workflows/codeql-analysis.yml
26 - .gitignore 28 - .gitignore
27 - .gitlab-ci.yml 29 - .gitlab-ci.yml
28 - CONTRIBUTING.md 30 - CONTRIBUTING.md