aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-04-23 21:27:59 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-05-03 16:32:35 -0300
commit5871b08a41d1479c3519fca5c4d630e3c8169184 (patch)
tree415f8cbade060165d612da86c7254d617f59f89a /.github
parentci: allow endpoints used in tests (diff)
downloadfirejail-5871b08a41d1479c3519fca5c4d630e3c8169184.tar.gz
firejail-5871b08a41d1479c3519fca5c4d630e3c8169184.tar.zst
firejail-5871b08a41d1479c3519fca5c4d630e3c8169184.zip
ci: run for every branch instead of just master
Having CI always run on WIP branches without having to open a PR beforehand makes it easier to debug CI issues. GitHub currently does not have any apparent limit for CI runs and there are no project-specific secrets as far as I know, so it should be safe to remove these restrictions.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-extra.yml2
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/codeql-analysis.yml3
-rw-r--r--.github/workflows/profile-checks.yml2
4 files changed, 0 insertions, 9 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 04023ab45..e7f4109f0 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -2,7 +2,6 @@ name: Build-extra CI
2 2
3on: 3on:
4 push: 4 push:
5 branches: [ master ]
6 paths-ignore: 5 paths-ignore:
7 - '.github/ISSUE_TEMPLATE/*' 6 - '.github/ISSUE_TEMPLATE/*'
8 - 'contrib/syntax/**' 7 - 'contrib/syntax/**'
@@ -25,7 +24,6 @@ on:
25 - SECURITY.md 24 - SECURITY.md
26 - src/firecfg/firecfg.config 25 - src/firecfg/firecfg.config
27 pull_request: 26 pull_request:
28 branches: [ master ]
29 paths-ignore: 27 paths-ignore:
30 - '.github/ISSUE_TEMPLATE/*' 28 - '.github/ISSUE_TEMPLATE/*'
31 - 'contrib/syntax/**' 29 - 'contrib/syntax/**'
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c6bb3b67c..aea5c2633 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -2,7 +2,6 @@ name: Build CI
2 2
3on: 3on:
4 push: 4 push:
5 branches: [ master ]
6 paths-ignore: 5 paths-ignore:
7 - '.github/ISSUE_TEMPLATE/*' 6 - '.github/ISSUE_TEMPLATE/*'
8 - .git-blame-ignore-revs 7 - .git-blame-ignore-revs
@@ -20,7 +19,6 @@ on:
20 - RELNOTES 19 - RELNOTES
21 - SECURITY.md 20 - SECURITY.md
22 pull_request: 21 pull_request:
23 branches: [ master ]
24 paths-ignore: 22 paths-ignore:
25 - '.github/ISSUE_TEMPLATE/*' 23 - '.github/ISSUE_TEMPLATE/*'
26 - .git-blame-ignore-revs 24 - .git-blame-ignore-revs
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 4da2ecd3d..1f74f01a6 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -7,7 +7,6 @@ name: "CodeQL"
7 7
8on: 8on:
9 push: 9 push:
10 branches: [ master ]
11 paths-ignore: 10 paths-ignore:
12 - '.github/ISSUE_TEMPLATE/*' 11 - '.github/ISSUE_TEMPLATE/*'
13 - 'contrib/syntax/**' 12 - 'contrib/syntax/**'
@@ -30,8 +29,6 @@ on:
30 - SECURITY.md 29 - SECURITY.md
31 - src/firecfg/firecfg.config 30 - src/firecfg/firecfg.config
32 pull_request: 31 pull_request:
33 # The branches below must be a subset of the branches above
34 branches: [ master ]
35 paths-ignore: 32 paths-ignore:
36 - '.github/ISSUE_TEMPLATE/*' 33 - '.github/ISSUE_TEMPLATE/*'
37 - 'contrib/syntax/**' 34 - 'contrib/syntax/**'
diff --git a/.github/workflows/profile-checks.yml b/.github/workflows/profile-checks.yml
index 9d9e67fe6..72e3e6f41 100644
--- a/.github/workflows/profile-checks.yml
+++ b/.github/workflows/profile-checks.yml
@@ -2,7 +2,6 @@ name: Profile Checks
2 2
3on: 3on:
4 push: 4 push:
5 branches: [ master ]
6 paths: 5 paths:
7 - 'ci/check/profiles/**' 6 - 'ci/check/profiles/**'
8 - 'etc/**' 7 - 'etc/**'
@@ -10,7 +9,6 @@ on:
10 - contrib/sort.py 9 - contrib/sort.py
11 - src/firecfg/firecfg.config 10 - src/firecfg/firecfg.config
12 pull_request: 11 pull_request:
13 branches: [ master ]
14 paths: 12 paths:
15 - 'ci/check/profiles/**' 13 - 'ci/check/profiles/**'
16 - 'etc/**' 14 - 'etc/**'