Azure devops scheduled pipeline not triggering
Following schedule in my yaml file didn’t work. Do you see the problem?
schedules:
- cron: "0 7 * * *"
displayName: Daily Trigger at 6 PM
always: true
branches:
include:
- refs/heads/YourBranch
Apparently when adding a trailing zero to the 7 fixes the issue.
schedules:
- cron: "0 07 * * *"
displayName: Daily Trigger at 6 PM
always: true
branches:
include:
- refs/heads/YourBranch
Resources
Hopefully this saves you some time!