Github-Readme-Stats does not show my issues #1906
-
Github-Readme-Stats does not show my issues. When I add the GitHub stats card to my personal repository, I see that it doesn't show me the actual total of issues I have. Attached is the link I use: As you can see I have 21 closed and 11 open issues: I would appreciate help with this problem. I look forward to hearing from you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey @LidiaGarrigo, thanks for your question. I checked your card, and it shows the right amount of issues. I think the confusion is that it is not clear that we only count problems created by your user account (see https://github.com/issues?q=is%3Aopen+is%3Aissue+author%3ALidiaGarrigo+archived%3Afalse+). Feel free to create a pull request to improve the README.md. 🚀 You can see that the card is correct by add ingthe query userInfo($login: String!) {
user(login: $login) {
openIssues: issues(states: OPEN) {
totalCount
}
closedIssues: issues(states: CLOSED) {
totalCount
}
}
} {
"login": "LidiaGarrigo"
} |
Beta Was this translation helpful? Give feedback.
Hey @LidiaGarrigo, thanks for your question. I checked your card, and it shows the right amount of issues. I think the confusion is that it is not clear that we only count problems created by your user account (see https://github.com/issues?q=is%3Aopen+is%3Aissue+author%3ALidiaGarrigo+archived%3Afalse+).
github-readme-stats/src/fetchers/stats-fetcher.js
Line 136 in 86f0ea0
Feel free to create a pull request to improve the README.md. 🚀 You can see that the card is correct by add ingthe
author:LidiaGarrigo
filter in GitHub's search tool. If you do that, you will only get #1904 issue. You can als…