Merge pull request #4357 from WhitWaldo/tweak-day-of-week-jobs

Reflecting valid value of 0-6, not 0-7 in jobs schedule
This commit is contained in:
Hannah Hunter 2024-09-17 11:09:16 -04:00 committed by GitHub
commit 5b0c57d008
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ Parameter | Description
Systemd timer style cron accepts 6 fields:
seconds | minutes | hours | day of month | month | day of week
--- | --- | --- | --- | --- | ---
0-59 | 0-59 | 0-23 | 1-31 | 1-12/jan-dec | 0-7/sun-sat
0-59 | 0-59 | 0-23 | 1-31 | 1-12/jan-dec | 0-6/sun-sat
##### Example 1
"0 30 * * * *" - every hour on the half hour