Reputation: 961
Is there any way I can see how many issues I've closed since the beginning of time on GitHub?
Upvotes: 2
Views: 267
Reputation: 1326616
It is best to check the GitHub API
For instance, the List Issues API can List all issues across owned and member repositories assigned to the authenticated user:
GET /user/issues
And you can filter by state, which include "closed
".
If you have many issues, do mind the pagination.
Upvotes: 2