Skip to content

Commit 3d5cedd

Browse files
committed
Add additional trigger events to CI workflows
The workflow_dispatch and repository_dispatch events allow manual triggering of the workflow. These can be useful when doing development and maintenance on the CI system, and do no harm when they are not needed, so it makes sense to add them.
1 parent 2f5c985 commit 3d5cedd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/spell-check.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
schedule:
77
# run every Tuesday at 3 AM UTC
88
- cron: "0 3 * * 2"
9+
workflow_dispatch:
10+
repository_dispatch:
911

1012
jobs:
1113
spellcheck:

0 commit comments

Comments
 (0)