Cron expression for every Sunday
0 0 * * 0What it does
The cron expression 0 0 * * 0 runs a job every Sunday — in plain terms, at 12:00 AM, only on Sunday. Every field not shown as a restriction stays *, meaning "no limit", so the schedule repeats on that pattern indefinitely.
Paste it into the tool below to see the next seven runs in both the schedule's time zone and yours, a field-by-field breakdown, and any lint warnings. Times are computed for the schedule zone (UTC by default); switch either column if your server or your own zone differs.
Standard 5-field cron drives most schedulers — Linux crontab, Kubernetes CronJobs, GitHub Actions, and others — though details like time-zone handling and step support vary. The lint checks below flag the portability and correctness traps that apply to this pattern.