Reputation: 35155
In Azure DevOps, when trying to find all jobs with time based triggers, is there an alternative to examining them one by one using UI or CLI?
Upvotes: 0
Views: 1165
Reputation: 3058
You can try to use Rest API to list builds.
GET https://dev.azure.com/{organization}/{project}/_apis/build/builds?reasonFilter=schedule&api-version=6.1-preview.6
After adding reasonFilter=schedule
parameter, you will get all schedule triggered builds and information related to the builds such as definition ids.
Upvotes: 1