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)
- Sun, Sep 13, 2026, 10:00:00 UTC2026-09-13T10:00:00.000Z
- Sun, Sep 13, 2026, 11:00:00 UTC2026-09-13T11:00:00.000Z
- Sun, Sep 13, 2026, 12:00:00 UTC2026-09-13T12:00:00.000Z
- Sun, Sep 13, 2026, 13:00:00 UTC2026-09-13T13:00:00.000Z
- Sun, Sep 13, 2026, 14:00:00 UTC2026-09-13T14:00:00.000Z
Export
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
- Schedules use UTC — convert local times carefully.
- GitHub may delay jobs during peak load; treat schedules as approximate.
- The shortest supported interval is every 5 minutes; very frequent schedules may be throttled.