aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build-extra.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/build-extra.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/build-extra.yml')
-rw-r--r--.github/workflows/build-extra.yml6
1 files changed, 6 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