Cron expression to run every year
To schedule a job to run every year, use this cron expression:
0 0 1 1 *At 12:00 AM, on day 1 of the month, only in January
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Fri, Jan 1, 2027, 00:00:00 UTC | in 195d 9h |
| 2 | Sat, Jan 1, 2028, 00:00:00 UTC | in 560d 9h |
| 3 | Mon, Jan 1, 2029, 00:00:00 UTC | in 926d 9h |
| 4 | Tue, Jan 1, 2030, 00:00:00 UTC | in 1291d 9h |
| 5 | Wed, Jan 1, 2031, 00:00:00 UTC | in 1656d 9h |
Adjust it
Other common schedules
Run every minute
* * * * *Run every 5 minutes
*/5 * * * *Run every 10 minutes
*/10 * * * *Run every 15 minutes
*/15 * * * *Run every 30 minutes
*/30 * * * *Run every hour
0 * * * *See the full breakdown on the 0 0 1 1 * page.