I'm using Bitbucket Cloud. We create PRs into a dev branch and then eventually push dev to master. Is there a way I can use the API to figure out which of these PRs made it into master, and which are still only in dev?
I can do something a bit similar using Git by doing something like:
git branch --contains {hash}
and then manually looking at the list and seeing if "dev" and "master" are on that list.
Is there a more simple way to accomplish what I'm trying to do?