We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaa9522 commit 3ca3543Copy full SHA for 3ca3543
workflow-templates/CheckMarkdownLinks.yml
@@ -11,9 +11,10 @@ name: Check Markdown Links
11
on:
12
push:
13
schedule:
14
- # Modify the cron time to a somewhat random day/time to avoid having all your repos running at the same time
15
- # Run 4th day of every month at 4:37 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07)
16
- - cron: "37 4 4 * *"
+ # Run monthly
+ # GitHub actions uses UTC for time zone
+ # crontab format: minute hour day-of-month month day-of-week
17
+ - cron: "1 5 4 * *"
18
workflow_dispatch:
19
inputs:
20
message:
0 commit comments