← cron expression builder

Cron: every Sunday (0 0 * * 0)

The cron expression 0 0 * * 0 runs a job every Sunday — here's exactly what each field means and how to use it.

0 0 * * 0
In plain English: Runs once a week, at 00:00 on Sunday.
FieldValueMeans
Minute0at 0
Hour0at 0
Day of month*every day
Month*every month
Day of week0at Sunday
# crontab -e, then add: 0 0 * * 0 /path/to/your-script.sh # GitHub Actions (.github/workflows/*.yml): on: schedule: - cron: "0 0 * * 0"
Need a different schedule? Open the interactive cron builder →

Notes

A cron expression has five fields — minute, hour, day-of-month, month, day-of-week — each accepting a number, * (every), */n (every n), a list (1,15) or a range (1-5). Day-of-week runs Sunday=0 to Saturday=6.

Note on timezone: plain cron runs in the server's local time. GitHub Actions cron always runs in UTC — convert your intended local time before setting it.

Other schedules: every minute · every 5 minutes · every 10 minutes · every 15 minutes · every 30 minutes · every hour · every 2 hours · every 6 hours · every 12 hours · every day at midnight

Frequently asked questions

What does the cron expression "0 0 * * 0" mean?

0 0 * * 0 runs every Sunday. Runs once a week, at 00:00 on Sunday.

How do I add "0 0 * * 0" to crontab?

Run crontab -e and add a line: 0 0 * * 0 /path/to/script.sh — then save. Use crontab -l to confirm it's installed.

Does "0 0 * * 0" run in UTC or local time?

System cron uses the server's local timezone; GitHub Actions and most CI schedulers use UTC. Adjust the hour field for the timezone difference.

Found this useful? 113 free, browser-only tools by Yuvrajsinh Jadav — an engineer who ships production AI systems. No account, nothing sent anywhere.