Reputation: 3117
I have a function app which I want to be triggered every alternate Tuesday. Can anyone suggest the cron expression.
Thanks
Upvotes: 0
Views: 494
Reputation: 16148
Azure Functions uses standard CRON syntax. So using something like this to build them should work:
0 0 0 15 * ? *
(meaning: every 15th day of a month, I hope I got your request right)
Upvotes: 1