Cron Expression: 0 0 * * 0

At 00:00 every Sunday - the conventional 'weekly' cron.

Field Breakdown

FieldValue
Minute0
Hour0
Day of Month*
Month*
Day of Week0

Common Use Case

Weekly digests, reports.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

0 0 * * 0 /path/to/your/script.sh

GitHub Actions (.github/workflows/*.yml)

on:
  schedule:
    - cron: '0 0 * * 0'

AWS EventBridge (cron format)

cron(0 0 * * 0)    # Note: AWS uses 6 fields with year

Kubernetes CronJob

spec:
  schedule: "0 0 * * 0"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →