Given the SHA of a specific commit in my repo, I want to identify the branches which contain the commit, using the GitHub API.
I'm aware I can do this locally using git
directly in a variety of ways, including
git branch --contains <commit>
but this is for an integrated page that's pulling data from several platforms, so I really need to be using the API.
This question had an accepted answer saying this wasn't possible back in 2013, but I'm hoping something along these lines has been added to the API since.
Is anyone aware of a way to get this information short of querying for a list of ALL commits in the branches of interest and iterating through them to compare?