Common Cron Examples

A compact table of schedules you can copy, paste, and adapt.

ExpressionMeaningFormat
*/5 * * * *Every 5 minutesStandard cron
0 * * * *Every hourStandard cron
0 0 * * *Every day at midnightStandard cron
0 9 * * 1-5Every weekday at 09:00Standard cron
0 0 1 * *First day of every monthStandard cron
cron(0 12 * * ? *)Every day at 12:00 UTCAWS EventBridge
cron(0 9 ? * MON-FRI *)Every weekday at 09:00 UTCAWS EventBridge
rate(5 minutes)Every 5 minutesAWS EventBridge

For production jobs, always confirm the timezone and cron flavor used by your scheduler. Standard Linux cron, Kubernetes CronJobs, GitHub Actions, and AWS EventBridge do not all use exactly the same rules.