Cron expression to run every weekday
To schedule a job to run every weekday, use this cron expression:
0 0 * * 1-5At 12:00 AM, Monday through Friday
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Mon, Sep 21, 2026, 00:00:00 UTC | in 19h 17m |
| 2 | Tue, Sep 22, 2026, 00:00:00 UTC | in 1d 19h |
| 3 | Wed, Sep 23, 2026, 00:00:00 UTC | in 2d 19h |
| 4 | Thu, Sep 24, 2026, 00:00:00 UTC | in 3d 19h |
| 5 | Fri, Sep 25, 2026, 00:00:00 UTC | in 4d 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 * * 1-5 page.