Cron expression for every Tuesday at 9 AM

The cron expression to run a job every Tuesday at 9 AM is 0 9 * * 2. Preview run times in your timezone.

0minute
9hour
*day
*month
2weekday

In Plain English

What your cron expression actually means.

At 09:00 AM, only on Tuesday

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About 0 9 * * 2

0 9 * * 2 runs once a week, on Tuesday at 9 AM. A common shape for weekly reports and digest emails.

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

FieldPositionMatches
0minute0
9hour9
*day of monthevery day
*monthevery month
2day of weekTuesday

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

# At 09:00 AM, only on Tuesday
0 9 * * 2 /path/to/command

GitHub Actions workflow

# At 09:00 AM, only on Tuesday
# Note: GitHub Actions always runs schedules in UTC.
on:
  schedule:
    - cron: '0 9 * * 2'

Weekly schedules

Build a custom cron expression →