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