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