Calum
Calum

Reputation: 1889

Listing items in Azure DevOps associated with differences between two tags

When we create pull requests we associate one or many items to the PR, sometimes we want to view items associated with merges from PRs between two tags - is this possible with the native DevOps functionality and if not is there an easy way to do this with the API?

Upvotes: 0

Views: 244

Answers (1)

Walter
Walter

Reputation: 3058

Is this possible with the native DevOps functionality?

I'm afraid DevOps does not have such a built-in function to meet your requirements directly.

Is there an easy way to do this with the API?

According to the document of list pull request work items, we only support checking linked work items based on pull request id but not tags.

We recommend that you could submit a suggestion ticket to suggest the feature on the Developer community.

As a workaround, you can manually view the pull requests and compare their differences. Here is an extension names Pull Request Manager Hub, it can display the tags and work items count of the pull requests. It may be useful for you. enter image description here

Upvotes: 1

Related Questions