Cron Expression for Every Quarter
Run a task every quarter (1st day of Jan, Apr, Jul, Oct)
Cron Expression
0 0 1 */3 *Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
0At the start of the hour
Hours
0At midnight
Day of Month
1At 1
Month
*/3Every 3 month
Day of Week
*Any value
Summary
This schedule will run your task run a task every quarter (1st day of jan, apr, jul, oct).