Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure devops pipeline get work items between builds

I'm looking for a pre-made option to take 2 builds, and compare the work items or PRs completed between them. i know there are REST API options in order to find out this information ( https://docs.microsoft.com/en-us/rest/api/azure/devops/build/builds/get%20work%20items%20between%20builds?view=azure-devops-rest-5.0 ) , but i would rather not build my own app for this if one already exists. Is there something built into azure devops that shows this information, preferably in an exportable format? Is there possibly an existing devops extension in the store? Any searching i do just brings up the REST API call and nothing else unfortunately.

like image 312
Phil Avatar asked Jan 07 '19 17:01

Phil


People also ask

How do you retrieve all work items associated with a release pipeline using Azure DevOps API?

Click the Repositories and the Branches Menu in the Azure DevOps Portal . Locate in the branch list the one you are going to use to build from, typically that should be your master branch, and click the options icon. Select Branch policies. Check the option ”Check for linked work items”.

How do I see all work items in Azure DevOps?

To view Work Items, choose Boards. You can view recently created, updated, and completed work items. By default, completed work items are hidden. To show them, choose view options, and switch the slider to show Completed Work Items.

What is the difference between build and release pipeline in Azure DevOps?

A Build Pipeline is used to generate Artifacts out of Source Code. A Release Pipeline consumes the Artifacts and conducts follow-up actions within a multi-staging system. It is best practice to establish a link between a Build Pipeline and the corresponding Release Pipeline.

What is build log in DevOps?

A build log is an enhanced console output of a build. It is represented by a structured list of the events which took place during the build. Generally, it includes entries on TeamCity-performed actions and the output of the processes launched during the build.


1 Answers

They seem to have changed it in Azure DevOps. We are using Azure DevOps Server (on-prem). In it, the old TFS-like work items comparison between the builds is possible when you actually deploy (execute a release) in a stage:

(in the screenshot below the right popup pane is showing the work item "diff" between the build currently deployed in TEST and the one which is about to be deployed now)

enter image description here

like image 55
Burst Avatar answered Oct 20 '22 17:10

Burst