Cron Expression: 0 9 * * 1

At 09:00 every Monday.

Field Breakdown

FieldValue
Minute0
Hour9
Day of Month*
Month*
Day of Week1

Common Use Case

Weekly kickoff reports.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

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

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

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

AWS EventBridge (cron format)

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

Kubernetes CronJob

spec:
  schedule: "0 9 * * 1"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →