I'm trying to create a pipeline in Azure DevOps that would trigger every every 2nd and 4th Tuesday of the month regardless if there are changes on the git branches. This is what I have, but it's not working.
trigger: none
pr: none
schedules:
cron: '0 8 8-14,22-28 * 2'
displayName: Trigger every 2nd and 4th Tuesday
branches:
include:
- develop
always: true
It is working for this - cron: "*/5 * * * *"(triggering every 5 mintues) but above cron is not working.