Cron expression for every weekday

The cron expression for every weekday is 0 0 * * 1-5. Runs Monday through Friday at midnight, skipping the weekend. Preview the next runs in your timezone.

0minute
0hour
*day
*month
1-5weekday

In Plain English

What your cron expression actually means.

At 12:00 AM, Monday through Friday

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About 0 0 * * 1-5

0 0 * * 1-5 — Runs Monday through Friday at midnight, skipping the weekend.

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

FieldPositionMatches
0minute0
0hour0
*day of monthevery day
*monthevery month
1-5day of weekMonday–Friday

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 12:00 AM, Monday through Friday
0 0 * * 1-5 /path/to/command

GitHub Actions workflow

# At 12:00 AM, Monday through Friday
# Note: GitHub Actions always runs schedules in UTC.
on:
  schedule:
    - cron: '0 0 * * 1-5'

Weekday & weekend schedules

Build a custom cron expression →