Cron Expression: 0 6 * * *

Every day at 06:00 (6 AM).

Field Breakdown

FieldValue
Minute0
Hour6
Day of Month*
Month*
Day of Week*

Common Use Case

Morning report generation, daily digest emails.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-04-28 06:001777356000
2026-04-29 06:001777442400
2026-04-30 06:001777528800
2026-05-01 06:001777615200
2026-05-02 06:001777701600

Sample times computed at build; your scheduler will fire on its own clock.

Equivalents in Popular Schedulers

crontab (Linux/macOS)

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

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

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

AWS EventBridge (cron format)

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

Kubernetes CronJob

spec:
  schedule: "0 6 * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →