Cron Every Monday and Wednesday

0 0 * * 1,3

Every Monday and Wednesday at 12:00 AM

Next 10 Executions

Times shown in UTC

  • Wed, May 20, 202600:00
  • Mon, May 25, 202600:00
  • Wed, May 27, 202600:00
  • Mon, Jun 1, 202600:00
  • Wed, Jun 3, 202600:00
  • Mon, Jun 8, 202600:00
  • Wed, Jun 10, 202600:00
  • Mon, Jun 15, 202600:00
  • Wed, Jun 17, 202600:00
  • Mon, Jun 22, 202600:00

Field Breakdown

0
Minute
0
0
Hour
0
*
Day of Month
Every day
*
Month
Every month
1,3
Day of Week
Mon, Wed

About This Schedule

The cron expression 0 0 * * 1,3 triggers at midnight every Monday and Wednesday. The comma-separated list 1,3 in the day-of-week field means "Monday and Wednesday."

This twice-weekly schedule creates an even split of the work week — roughly 2 days between each run (Mon→Wed is 2 days, Wed→Mon is 5 days including the weekend). It's useful for tasks that need more than weekly attention but less than daily: semi-weekly data syncs, twice-weekly report generation, and bi-weekly cleanup jobs.

To run at a specific time instead of midnight, change the hour and minute fields: 0 9 * * 1,3 runs at 9 AM on Monday and Wednesday. You can also adjust the days — 0 0 * * 2,4 targets Tuesday and Thursday instead.

Frequently Asked Questions