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 8ccb902 commit aaa9522Copy full SHA for aaa9522
.github/workflows/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:32 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07)
16
- - cron: "32 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 4 4 * *"
18
workflow_dispatch:
19
inputs:
20
message:
0 commit comments