Cron expression to run every weekend
To schedule a job to run every weekend, use this cron expression:
0 0 * * 6,0At 12:00 AM, only on Sunday and Saturday
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Sat, Sep 26, 2026, 00:00:00 UTC | in 5d 19h |
| 2 | Sun, Sep 27, 2026, 00:00:00 UTC | in 6d 19h |
| 3 | Sat, Oct 3, 2026, 00:00:00 UTC | in 12d 19h |
| 4 | Sun, Oct 4, 2026, 00:00:00 UTC | in 13d 19h |
| 5 | Sat, Oct 10, 2026, 00:00:00 UTC | in 19d 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 * * 6,0 page.