Skip to content

Commit

Permalink
github: enable manual workflows
Browse files Browse the repository at this point in the history
Enable manual triggering of specific GitHub workflows.

Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
pcmoore committed Apr 30, 2024
1 parent 9a24f75 commit 2bf1132
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

name: Content Checking
on: ["push", "pull_request"]
on: ["push", "pull_request", "workflow_dispatch"]

jobs:
codespell:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/epub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

name: EPUB build
on: ["push", "pull_request"]
on: ["push", "pull_request", "workflow_dispatch"]

jobs:
epub:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

name: HTML build
on: ["push", "pull_request"]
on: ["push", "pull_request", "workflow_dispatch"]

jobs:
html:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#

name: PDF build
on: ["push", "pull_request"]
on: ["push", "pull_request", "workflow_dispatch"]

jobs:
pdf:
Expand Down

0 comments on commit 2bf1132

Please sign in to comment.