Cron Expression for Lunch Break Alert
Run a task at 12:30 PM on weekdays
Cron Expression
30 12 * * 1-5
Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
30
At 30
Hours
12
At 12:00
Day of Month
*
Any value
Month
*
Any value
Day of Week
1-5
From Monday to Friday
Summary
This schedule will run your task run a task at 12:30 pm on weekdays.