notes

March 9, 2023 #tips #cron #

Run cron jobs in Devops

Need to schedule an Azure Devops job on a schedule? You can do cron type schedules to achieve this!

schedules:
- cron: "0 0 5 * * *"
  displayName: 5 AM Build
  branches:
    include:
    - devlop

Starts the job every day at 5AM.