Reputation: 13
I'm Working on a GitHub API project, I want to analyze issues of a project, such as who caused how many issues, how often someone causes an issue, etc.
I successfully extracted all the issues of a project using the GitHub API. My question is this:
How can I found the person who solved a specific issue? The person who closes the issue is the person who solved that issue??
Upvotes: 1
Views: 99
Reputation: 1323953
The same GitHub API for getting an issue gives you the sate of the issue anbd who closed it, but... not if it is "resolved".
You would need to use the GraphQL API in order to check if an issue is closed by a resolved (ie merged) PR (Pull Request)
Upvotes: 1