I need to search through our history to find out which pull-request merged a specific SHA into our main branch. I need to find out who approved the pull request for that specific commit. How can I do this?
the pull request view on the site allows me to filter by author, but that did not show me the commit SHA I found in history (by a specific author). It is possible that the PR author modified the PR commit message to not include the list of commits (the default behavior), so I am unable to map commits to pull-request approvals.
Edit: Sorry, my answer assumed you were on Bitbucket Server instead of Bitbucket Cloud. I didn't notice you tagged your questions with Bitbucket Cloud until now. Nonetheless, it's worth checking out the Bitbucket Cloud REST API to see if it has anything similar.
------
Original answer below:
You might have some luck with pull-requests REST API (official reference docs here).
e.g., "pull-requests?at=refs/heads/master&state=MERGED".
The JSON results appear to have some commit-id's in them.
Live example from my demo server (authenticate as "test" / "test" first): http://vm.bit-booster.com/bitbucket/rest/api/1.0/projects/bb/repos/b/pull-requests?at=refs/heads/master&state=MERGED
p.s. I'm the original author of the add-on Bit-Booster for Bitbucket Server.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.