Skip to content

Commit 552c0dc

Browse files
committed
GH Actions: allow for manually triggering a workflow
Triggering a workflow for a branch manually is not supported by default in GH Actions, but has to be explicitly allowed. Ref: https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/
1 parent cad5159 commit 552c0dc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
# Also run this workflow on day 10 of every month as the repo isn't that active.
1010
schedule:
1111
- cron: '0 0 10 * *'
12+
# Allow manually triggering the workflow.
13+
workflow_dispatch:
1214

1315
jobs:
1416
xmllint:

0 commit comments

Comments
 (0)