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, Sep 27, 2026, 00:00:00 UTC | in 6d 19h |
| 2 | Sun, Oct 4, 2026, 00:00:00 UTC | in 13d 19h |
| 3 | Sun, Oct 11, 2026, 00:00:00 UTC | in 20d 19h |
| 4 | Sun, Oct 18, 2026, 00:00:00 UTC | in 27d 19h |
| 5 | Sun, Oct 25, 2026, 00:00:00 UTC | in 34d 19h |
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.