Hi,
Is there any way to get list of all active pull request of particular Bitbucket Project ? Currently I have 9-10 repository in a Project and I have to navigate to each repository to check active pull request. Is there any way to get list through CLI / git commands / API etc?
Thanks,
Hardik
Hi Hardik,
There is no capability to do this through SourceTree. The integration would probably involve some level of Connect/API work and some cross-team effort. I'd say create a feature request via jira.atlassian.com (for SourceTree) if you want to see this.
However, this can be done via API: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/pullrequests
Hi Jesse,
Thanks for help. I will raise feature request for ST/Bitbucket.
Regarding you above API link, it is saying "Returns a paginated list of all pull requests on the specified repository. By default only open pull requests are returned. This can be controlled using the state query parameter. "
So it seems it will still provide list of pull request of particular Repository only. It can list for complete Project ?
Also I am new to API, Is it similar to https://developer.atlassian.com/static/rest/stash/3.11.6/stash-rest.html?_ga=2.49657830.1358924770.1506303760-2073654881.1458562577#idp3175008 ?
I created one rest API like this : /REST/API/1.0/PROJECTS/{PROJECTKEY}/REPOS/{REPOSITORYSLUG}/PULL-REQUESTS
and it is listing Active pull request in browser in following format.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
You can do this using the Awesome Graphs Pie Chart report configured by a State statistic type on a Project level. This way you will be able to take a closer look at pull requests sorted by their state across all repositories in your project.
Another option is exporting the pull request data from Bitbucket using Awesome Graphs REST API. In the parameters you can specify which pull requests you want to export, in this case, state=open.
Hope it helps,
Vlada
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.