Cron Scheduling Guide
Master cron expressions for Linux crontab, Kubernetes, GitHub Actions, and CI pipelines — with live next-run preview.
Cron expressions define recurring job schedules using 5 fields: minute, hour, day of month, month, and day of week. They power Linux crontab, Kubernetes CronJobs, AWS EventBridge, and GitHub Actions schedules.
Common cron patterns
- 0 * * * * — every hour at minute 0
- 0 9 * * 1-5 — 9 AM weekdays
- */15 * * * * — every 15 minutes
- 0 0 1 * * — first day of every month at midnight
- 0 0 * * 0 — every Sunday at midnight
Validate with next-run preview
The Utiliio Cron workbench parses any expression and shows the next 5 scheduled runs with a field-by-field breakdown. Paste an existing cron from crontab or build one visually with presets — both tabs share the same page.
Open Cron workbench →Special characters
- * — any value
- */n — every n units
- n-m — range from n to m
- n,m — list of values n and m