Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find all completed PRs across projects in Azure devops

Tags:

azure-devops

How can I find all completed PRs across projects in Azure devops?

I'm looking for them under "My Pull Requests" in devops link, but nothing is showing up?

like image 785
derek Avatar asked Feb 02 '26 01:02

derek


2 Answers

Try using this URL: it is natively available in Azure DevOps

https://dev.azure.com/your_org/_pulls

Update: You can also do this now with a new widget (Pull request multiple repos) built by Microsoft.

like image 104
AshHimself Avatar answered Feb 04 '26 13:02

AshHimself


You can do it programmatically with REST API. Simple workflow:

  1. Get all projects: Projects-List
  2. Get repositories of each project: Repositories - List
  3. Get pull requests of each repository: Pull Requests - Get Pull Requests

You could build a hub extension for this requirement: Add a hub

like image 28
starian chen-MSFT Avatar answered Feb 04 '26 14:02

starian chen-MSFT