Cron expression to run every week (Sunday)
To schedule a job to run every week (Sunday), use this cron expression:
0 0 * * 0At 12:00 AM, only on Sunday
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Sun, Jun 21, 2026, 00:00:00 UTC | in 1d 9h |
| 2 | Sun, Jun 28, 2026, 00:00:00 UTC | in 8d 9h |
| 3 | Sun, Jul 5, 2026, 00:00:00 UTC | in 15d 9h |
| 4 | Sun, Jul 12, 2026, 00:00:00 UTC | in 22d 9h |
| 5 | Sun, Jul 19, 2026, 00:00:00 UTC | in 29d 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 * * 0 page.