Cron expression for every minute

The cron expression to run a job every minute is * * * * *, the shortest interval standard cron supports. See the next run times in your timezone.

*minute
*hour
*day
*month
*weekday

In Plain English

What your cron expression actually means.

Every minute, every hour, every day

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About * * * * *

* * * * * matches every minute of every hour, so the job starts 60 times an hour — the finest granularity standard cron offers. Anything faster needs two lines with sleep, or a scheduler with a seconds field; the FAQ on the home page covers both.

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

FieldPositionMatches
*minuteevery minute
*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 minute, every hour, every day
* * * * * /path/to/command

GitHub Actions workflow

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

Repeating intervals

Build a custom cron expression →