Is there a way to find out the acceptance rate of one's GitHub PR's, probably using the API?
While at that, it would be interesting to find out how many of the issues I reported have been closed vs. are still open, across all repos.
I don't see a way to get that information directly. That leaves you with the GitHub Issues Events API.
With that, you can list all the events of a repo:
GET /repos/:owner/:repo/issues/events
https://api.github.com/repos/user/reponame/issues/events
And filter on a user and an event (looking for "merged": true
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With