Weekly
0 10 * * 6,0Run Saturday and Sunday at 10:00.
This preview is live: the table below shows the actual next run times for 0 10 * * 6,0 in your time zone, recomputed in your browser. Change the expression, dialect, or zone to experiment, then copy the result.
0 10 * * 6,0 means0 10 * * 6,0 uses the day-of-week list 6,0 — Saturday and Sunday — to fire only at weekends, at 10am. It is the mirror image of the 1-5 weekday filter, for jobs that specifically belong to the weekend.
Weekend-only schedules show up for consumer products (where the weekend is the busy time), for maintenance that must avoid the working week, and for personal automation that runs only on days off.
Unix cron has five fields. Here is what each one is doing in this expression:
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | minute = 0 |
| Hour | 10 | hour = 10 |
| Day of month | * | every day-of-month |
| Month | * | every month |
| Day of week | 6,0 | the specific values 6,0 of day-of-week |
The same cadence written for the seven cron dialects you are most likely to meet. Copy the line for the system you target — the field count and day-of-week numbering differ between them.
| Scheduler | Expression | Copy |
|---|---|---|
| Unix / crontab | 0 10 * * 6,0 | |
| GitHub Actions | 0 10 * * 6,0 | |
| Kubernetes CronJob | 0 10 * * 6,0 | |
| Vercel Cron | 0 10 * * 6,0 | |
| Quartz | 0 0 10 ? * 6,0 * | |
| Spring | 0 0 10 ? * 6,0 | |
| AWS EventBridge | 0 10 ? * 6,0 * |
0 10 * * 6,0Use 6,0 (Sat, Sun), not 6-0 — a descending range is invalid. You can also write 0,6 or 6,7; all three name the same two days because 0 and 7 both mean Sunday.
0 10 * * 6,0 means: Run Saturday and Sunday at 10:00. 0 10 * * 6,0 uses the day-of-week list 6,0 — Saturday and Sunday — to fire only at weekends, at 10am. It is the mirror image of the 1-5 weekday filter, for jobs that specifically belong to the weekend.
Use 0 10 * * 6,0 in the schedule's cron field. Use 6,0 (Sat, Sun), not 6-0 — a descending range is invalid. You can also write 0,6 or 6,7; all three name the same two days because 0 and 7 both mean Sunday.
EventBridge uses six fields with a required year and a ? placeholder in one day field: 0 10 ? * 6,0 *. Wrap it as cron(0 10 ? * 6,0 *) in the console or CloudFormation.
Quartz is seconds-first with a trailing year, so the equivalent is 0 0 10 ? * 6,0 *. Remember Quartz numbers Sunday as 1, the opposite of Unix.
Browse the full set of cron pattern pages, or jump to the interactive tools: the cron expression builder for designing a schedule from scratch, the cron cheat sheet for a side-by-side reference, the cron timezone translator for moving a schedule between zones and dialects, and the GitHub Actions cron picker for DST-stable CI schedules.