aboutsummaryrefslogtreecommitdiffstats
path: root/.github
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
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')
-rw-r--r--.github/workflows/build-extra.yml6
-rw-r--r--.github/workflows/build.yml6
-rw-r--r--.github/workflows/codeql-analysis.yml6
3 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 6f9a4bc2c..da54c1094 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -4,7 +4,10 @@ on:
4 push: 4 push:
5 branches: [ master ] 5 branches: [ master ]
6 paths-ignore: 6 paths-ignore:
7 - .git-blame-ignore-revs
8 - .gitignore
7 - CONTRIBUTING.md 9 - CONTRIBUTING.md
10 - COPYING
8 - README 11 - README
9 - README.md 12 - README.md
10 - RELNOTES 13 - RELNOTES
@@ -16,7 +19,10 @@ on:
16 pull_request: 19 pull_request:
17 branches: [ master ] 20 branches: [ master ]
18 paths-ignore: 21 paths-ignore:
22 - .git-blame-ignore-revs
23 - .gitignore
19 - CONTRIBUTING.md 24 - CONTRIBUTING.md
25 - COPYING
20 - README 26 - README
21 - README.md 27 - README.md
22 - RELNOTES 28 - RELNOTES
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cc7893305..7b23ea0b3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -4,7 +4,10 @@ on:
4 push: 4 push:
5 branches: [ master ] 5 branches: [ master ]
6 paths-ignore: 6 paths-ignore:
7 - .git-blame-ignore-revs
8 - .gitignore
7 - CONTRIBUTING.md 9 - CONTRIBUTING.md
10 - COPYING
8 - README 11 - README
9 - README.md 12 - README.md
10 - RELNOTES 13 - RELNOTES
@@ -12,7 +15,10 @@ on:
12 pull_request: 15 pull_request:
13 branches: [ master ] 16 branches: [ master ]
14 paths-ignore: 17 paths-ignore:
18 - .git-blame-ignore-revs
19 - .gitignore
15 - CONTRIBUTING.md 20 - CONTRIBUTING.md
21 - COPYING
16 - README 22 - README
17 - README.md 23 - README.md
18 - RELNOTES 24 - RELNOTES
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