3

i have C# Timer Trigger Azure function, which i want to trigger at specific dates of every month. what should be the cron expression for it?

e.g. : trigger job at 8th and 20th date of each month.

Avinash patil
  • 1,689
  • 4
  • 17
  • 39

1 Answers1

4

Your trigger can look something like:

starting with azure cron expression:

{second} {minute} {hour} {day} {month} {day-of-week}

The expression:

0 0 12 8,20 * ? 

This will trigger a noon on the 8 and 20 each month

Peter
  • 27,590
  • 8
  • 64
  • 84