aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-09-26 12:16:24 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-09-26 12:24:14 -0300
commite796ba1349c964633ef85c02ce3f0273f5623a6f (patch)
tree58aa880a74763907f2cddb2002dfed925773cd67 /.github
parentyoutubemusic-nativefier: fix include .local name (#6020) (diff)
downloadfirejail-e796ba1349c964633ef85c02ce3f0273f5623a6f.tar.gz
firejail-e796ba1349c964633ef85c02ce3f0273f5623a6f.tar.zst
firejail-e796ba1349c964633ef85c02ce3f0273f5623a6f.zip
ci: allow running workflows manually
Add `on.workflow_dispatch`. See: * https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_dispatch * https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
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 7340ce8ce..45caa531f 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 5d4320809..195bf9710 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/**'