I am seeing an unwanted repository in my repository list
Repository Name : MicrosoftDocs/azure-docs
It's because it's a repository you have contributed to recently. As far as I know, the following could count as a contribution :
You can get a glimpse of what could be a contribution here
I didn't found any documentation of what is listed in the repositoy listing when you go to https://github.com. It seems it features :
In your case it seems to be that you've created an issue in the repo. My guess is that it will disappear from your listing after 6 months (from what I've seen myself) if you don't make new contribution to this project anymore
Also, the repositories you have contributed to can be requested via the GraphQL API using this request (from the explorer):
{
user(login: "forvaidya") {
repositoriesContributedTo(first: 100, contributionTypes: [ISSUE, COMMIT, PULL_REQUEST, REPOSITORY, PULL_REQUEST_REVIEW]) {
nodes {
nameWithOwner
}
}
}
}
The result of the above request seems to request also contributions older than X months (on Github Web UI)