Cron Every Weekend at Noon

0 12 * * 0,6

Every Saturday and Sunday at 12:00 PM

Next 10 Executions

Times shown in UTC

  • Sat, May 23, 202612:00
  • Sun, May 24, 202612:00
  • Sat, May 30, 202612:00
  • Sun, May 31, 202612:00
  • Sat, Jun 6, 202612:00
  • Sun, Jun 7, 202612:00
  • Sat, Jun 13, 202612:00
  • Sun, Jun 14, 202612:00
  • Sat, Jun 20, 202612:00
  • Sun, Jun 21, 202612:00

Field Breakdown

0
Minute
0
12
Hour
12
*
Day of Month
Every day
*
Month
Every month
0,6
Day of Week
Sun, Sat

About This Schedule

The cron expression 0 12 * * 0,6 runs at noon on both Saturday and Sunday. This midday weekend slot is useful for tasks that should run during daylight hours when on-call engineers are available to respond to failures.

Common uses include weekend health check reports, midday data synchronization, post-morning-maintenance verification, and sending weekend status summaries. Noon timing is a practical choice because it's late enough that morning maintenance has finished but early enough to address any issues.

For a different weekend time, adjust the hour: 0 8 * * 0,6 for morning, 0 18 * * 0,6 for evening.

Frequently Asked Questions