Cronnest

GitHub Actions Cron Schedule

Build and understand GitHub Actions schedule cron expressions. See next run times in UTC with clear caveats.

GitHub Actions Cron Schedule

Paste a cron → plain English + next runs. Everything stays in your browser.

schedule cron (UTC only in Actions)

Plain English

Every hour, every day

  • GitHub Actions schedules run in UTC only. Timezone selection below is for preview; the workflow itself always uses UTC.
  • GitHub may delay scheduled workflows during high load; do not rely on exact-second timing.

Next 5 runs (UTC)

  1. Sun, Sep 13, 2026, 10:00:00 UTC2026-09-13T10:00:00.000Z
  2. Sun, Sep 13, 2026, 11:00:00 UTC2026-09-13T11:00:00.000Z
  3. Sun, Sep 13, 2026, 12:00:00 UTC2026-09-13T12:00:00.000Z
  4. Sun, Sep 13, 2026, 13:00:00 UTC2026-09-13T13:00:00.000Z
  5. Sun, Sep 13, 2026, 14:00:00 UTC2026-09-13T14:00:00.000Z

Export

0 * * * *

GitHub Actions schedule cron

Workflows can run on a schedule using the standard 5-field Unix cron syntax under on.schedule. GitHub always evaluates these schedules in UTC.

Example

Run every hour at minute 0:

cron: '0 * * * *'

Caveats