azureazure-web-app-serviceazure-webjobssdkazure-webjobs-triggered

How to Schedule azure web job with 2 different Cron expression


I have Created python azure webjob which I want to trigger twice - 1st is daily @2 am and second is every Saturday @ 4 am.

How can I achieve this in a single cron expression?

Below is my current cron expression file looks like:

{"schedule":"0 0 14 * * *"}

Solution