Minimi
Minimi

Reputation: 961

Github see number of issues I've closed all time

Is there any way I can see how many issues I've closed since the beginning of time on GitHub?

Upvotes: 2

Views: 267

Answers (1)

VonC
VonC

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

Related Questions