Cron Expression: 0 18 * * *

Every day at 18:00 (6 PM).

Field Breakdown

FieldValue
Minute0
Hour18
Day of Month*
Month*
Day of Week*

Common Use Case

End-of-business-day reports.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-04-28 18:001777399200
2026-04-29 18:001777485600
2026-04-30 18:001777572000
2026-05-01 18:001777658400
2026-05-02 18:001777744800

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

Equivalents in Popular Schedulers

crontab (Linux/macOS)

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

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

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

AWS EventBridge (cron format)

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

Kubernetes CronJob

spec:
  schedule: "0 18 * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →