0 */12 * * * explained
On the hour, every 12 hours
On the hour, every 12 hours
Runs at midnight and noon every day. · 5-field cron
Next 5 runs (UTC)
| # | Run time (UTC) | When |
|---|---|---|
| 1 | Thu, Aug 6, 2026, 00:00:00 UTC | in 7h 52m |
| 2 | Thu, Aug 6, 2026, 12:00:00 UTC | in 19h 52m |
| 3 | Fri, Aug 7, 2026, 00:00:00 UTC | in 1d 7h |
| 4 | Fri, Aug 7, 2026, 12:00:00 UTC | in 1d 19h |
| 5 | Sat, Aug 8, 2026, 00:00:00 UTC | in 2d 7h |
Try it in your timezone
How to read this expression
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | exactly 0 |
| Hour | */12 | every 12 step |
| Day of month | * | every value |
| Month | * | every value |
| Day of week | * | every value |
Related schedules
* * * * *Every minute
*/5 * * * *Every 5 minutes
*/10 * * * *Every 10 minutes
*/15 * * * *Every 15 minutes
*/30 * * * *Every 30 minutes
0 * * * *Every hour
FAQ
- Is "0 */12 * * *" a valid cron expression?
- Yes — it parses as a standard 5-field cron expression: On the hour, every 12 hours.
- How do I use it?
- Paste it into your crontab, CI scheduler, or job runner. Need a different schedule? Edit the fields in the builder above or browse all common cron expressions.
Looking for a phrase instead? See every minute, every 5 minutes, every 10 minutes, every 15 minutes.