Skip to content

Commit 1d73a02

Browse files
committed
Add manual trigger events to sketch compile workflow
The `workflow_dispatch` and `repository_dispatch` events allow manual triggering of the workflow. These can be useful to immediately check for impacts of changes to external resources. They do no harm when they are not needed, so there is no reason not to have them in place to be ready for when they might be needed.
1 parent ccade73 commit 1d73a02

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/compile-examples.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ on:
1717
schedule:
1818
# Run every Tuesday at 8 AM UTC to catch breakage caused by changes to external resources (libraries, platforms).
1919
- cron: "0 8 * * TUE"
20+
workflow_dispatch:
21+
repository_dispatch:
2022

2123
env:
2224
SKETCHES_REPORTS_PATH: sketches-reports

0 commit comments

Comments
 (0)