Cron expression for every Saturday

The cron expression to run a job every Saturday at midnight is 0 0 * * 6. See the next executions and copy it for crontab, Kubernetes, or GitHub Actions.

0minute
0hour
*day
*month
6weekday

In Plain English

What your cron expression actually means.

At 12:00 AM, only on Saturday

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About 0 0 * * 6

0 0 * * 6 runs weekly at midnight on Saturday. The last field is the day of week, where 0 is Sunday and 6 is Saturday — Saturday is 6.

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

  • 0 minute
  • 0 hour
  • * day of month (every value)
  • * month (every value)
  • 6 day of week

Weekly schedules

Build a custom cron expression →