Cron expression for every hour

The cron expression to run a job every hour is 0 * * * *. Preview upcoming executions in any timezone and copy it straight into your scheduler.

0minute
*hour
*day
*month
*weekday

In Plain English

What your cron expression actually means.

Every hour, every day

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About 0 * * * *

0 * * * * fires at the top of every hour, on minute 0. To run at a different minute past each hour, change the first field: 15 * * * * runs at :15.

Cron reads the five fields as minute hour day month weekday. For this schedule that breaks down as:

FieldPositionMatches
0minute0
*hourevery hour
*day of monthevery day
*monthevery month
*day of weekevery day of the week

New to cron? Read the syntax reference or the FAQ.

Use it in crontab or GitHub Actions

Both snippets are ready to paste. A crontab runs in the server's local timezone; GitHub Actions always evaluates schedules in UTC. For Kubernetes, AWS EventBridge, or Vercel, use the export menu in the calculator above.

crontab

# Every hour, every day
0 * * * * /path/to/command

GitHub Actions workflow

# Every hour, every day
# Note: GitHub Actions always runs schedules in UTC.
on:
  schedule:
    - cron: '0 * * * *'

Repeating intervals

Build a custom cron expression →