Cron Expression: 0 * * * 1-5

At minute 0 of every hour, Monday through Friday only.

Field Breakdown

FieldValue
Minute0
Hour*
Day of Month*
Month*
Day of Week1-5

Common Use Case

Hourly checks during business days.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

0 * * * 1-5 /path/to/your/script.sh

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

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

AWS EventBridge (cron format)

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

Kubernetes CronJob

spec:
  schedule: "0 * * * 1-5"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →