Skip to content

Instantly share code, notes, and snippets.

@appcoreopc
Created August 22, 2020 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save appcoreopc/298f49dcae88d227dcb004462314c156 to your computer and use it in GitHub Desktop.
Save appcoreopc/298f49dcae88d227dcb004462314c156 to your computer and use it in GitHub Desktop.
NCRONTAB examples
Here are some examples of NCRONTAB expressions you can use for the timer trigger in Azure Functions.
NCRONTAB EXAMPLES
Example When triggered
"0 */5 * * * *" once every five minutes
"0 0 * * * *" once at the top of every hour
"0 0 */2 * * *" once every two hours
"0 0 9-17 * * *" once every hour from 9 AM to 5 PM
"0 30 9 * * *" at 9:30 AM every day
"0 30 9 * * 1-5" at 9:30 AM every weekday
"0 30 9 * Jan Mon" at 9:30 AM every Monday in January
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment