Cron expression for every Saturday at 6 PM

The cron expression to run a job every Saturday at 6 PM is 0 18 * * 6. Preview run times in your timezone.

0minute
18hour
*day
*month
6weekday

In Plain English

What your cron expression actually means.

At 06:00 PM, only on Saturday

Upcoming Executions

Preview the next 50 times this schedule will trigger.

Calculating…

About 0 18 * * 6

0 18 * * 6 runs once a week, on Saturday at 6 PM. 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
18hour18
*day of monthevery day
*monthevery month
6day of weekSaturday

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 06:00 PM, only on Saturday
0 18 * * 6 /path/to/command

GitHub Actions workflow

# At 06:00 PM, only on Saturday
# Note: GitHub Actions always runs schedules in UTC.
on:
  schedule:
    - cron: '0 18 * * 6'

Weekly schedules

Build a custom cron expression →