aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-10-05 09:05:10 -0400
committerLibravatar GitHub <noreply@github.com>2023-10-05 09:05:10 -0400
commit0617a70f4d3fffc363e82bbad923063efc6cb331 (patch)
tree035bff63781d3da12a1d208877ea433f54672c02 /.github
parentMerge pull request #6030 from glitsj16/np-floorp (diff)
parentci: allow running workflows manually (diff)
downloadfirejail-0617a70f4d3fffc363e82bbad923063efc6cb331.tar.gz
firejail-0617a70f4d3fffc363e82bbad923063efc6cb331.tar.zst
firejail-0617a70f4d3fffc363e82bbad923063efc6cb331.zip
Merge pull request #6026 from kmk3/ci-allow-manual-run
ci: allow running workflows manually
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-extra.yml1
-rw-r--r--.github/workflows/build.yml1
-rw-r--r--.github/workflows/check-c.yml1
-rw-r--r--.github/workflows/check-profiles.yml1
-rw-r--r--.github/workflows/check-python.yml1
-rw-r--r--.github/workflows/codespell.yml1
-rw-r--r--.github/workflows/test.yml1
7 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index 29817211d..2d81f2e42 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -3,6 +3,7 @@
3name: Build-extra 3name: Build-extra
4 4
5on: 5on:
6 workflow_dispatch:
6 push: 7 push:
7 branches-ignore: 8 branches-ignore:
8 - 'dependabot/**' 9 - 'dependabot/**'
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0577cb962..0a4da2cc3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -5,6 +5,7 @@ name: Build
5 5
6# Note: Keep this list in sync with DISTFILES in ../../Makefile. 6# Note: Keep this list in sync with DISTFILES in ../../Makefile.
7on: 7on:
8 workflow_dispatch:
8 push: 9 push:
9 branches-ignore: 10 branches-ignore:
10 - 'dependabot/**' 11 - 'dependabot/**'
diff --git a/.github/workflows/check-c.yml b/.github/workflows/check-c.yml
index 38cb25381..946fd24f8 100644
--- a/.github/workflows/check-c.yml
+++ b/.github/workflows/check-c.yml
@@ -3,6 +3,7 @@
3name: Check-C 3name: Check-C
4 4
5on: 5on:
6 workflow_dispatch:
6 push: 7 push:
7 branches-ignore: 8 branches-ignore:
8 - 'dependabot/**' 9 - 'dependabot/**'
diff --git a/.github/workflows/check-profiles.yml b/.github/workflows/check-profiles.yml
index e05eed664..38a7bc487 100644
--- a/.github/workflows/check-profiles.yml
+++ b/.github/workflows/check-profiles.yml
@@ -3,6 +3,7 @@
3name: Check-Profiles 3name: Check-Profiles
4 4
5on: 5on:
6 workflow_dispatch:
6 push: 7 push:
7 branches-ignore: 8 branches-ignore:
8 - 'dependabot/**' 9 - 'dependabot/**'
diff --git a/.github/workflows/check-python.yml b/.github/workflows/check-python.yml
index c3236421a..62f5b1ce6 100644
--- a/.github/workflows/check-python.yml
+++ b/.github/workflows/check-python.yml
@@ -3,6 +3,7 @@
3name: Check-Python 3name: Check-Python
4 4
5on: 5on:
6 workflow_dispatch:
6 push: 7 push:
7 branches-ignore: 8 branches-ignore:
8 - 'dependabot/**' 9 - 'dependabot/**'
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 380abe248..9e4ed3e9e 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -3,6 +3,7 @@
3name: Codespell 3name: Codespell
4 4
5on: 5on:
6 workflow_dispatch:
6 push: 7 push:
7 branches-ignore: 8 branches-ignore:
8 - 'dependabot/**' 9 - 'dependabot/**'
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 921245801..842b8bcb5 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -3,6 +3,7 @@
3name: Test 3name: Test
4 4
5on: 5on:
6 workflow_dispatch:
6 push: 7 push:
7 branches-ignore: 8 branches-ignore:
8 - 'dependabot/**' 9 - 'dependabot/**'