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 | Thu, Aug 6, 2026, 00:00:00 UTC | in 12h 43m |
| 2 | Fri, Aug 7, 2026, 00:00:00 UTC | in 1d 12h |
| 3 | Mon, Aug 10, 2026, 00:00:00 UTC | in 4d 12h |
| 4 | Tue, Aug 11, 2026, 00:00:00 UTC | in 5d 12h |
| 5 | Wed, Aug 12, 2026, 00:00:00 UTC | in 6d 12h |
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.