| Field | Values | Special |
|---|---|---|
| Minute | 0–59 | * any · */n every n · a-b range · a,b,c list |
| Hour | 0–23 | |
| Day of month | 1–31 | |
| Month | 1–12 (or JAN–DEC) | |
| Day of week | 0–6 (Sun=0, or SUN–SAT) |
| Expression | Meaning |
|---|---|
*/5 * * * * | Every 5 minutes |
0 * * * * | Every hour, on the hour |
0 8 * * * | Every day at 08:00 |
0 8,20 * * * | Every day at 08:00 and 20:00 |
0 9 * * 1-5 | 09:00 on weekdays (Mon–Fri) |
30 3 1 * * | 03:30 on the 1st of every month |
@daily | Once a day at midnight (shorthand) |
Note: most cron systems (including GitHub Actions) run in UTC. The next-run times above are shown in your local timezone for convenience — mind the offset when you paste into a server crontab.