tmaj
tmaj

Reputation: 35155

Azure DevOps - Find pipelines with schedules

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?

enter image description here

Upvotes: 0

Views: 1165

Answers (1)

Walter
Walter

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

Related Questions