GitHub – Where to See All Comments on Issues

github

Where can I see all the comments I wrote on issues on the GitHub website?

https://github.com/issues only list the issues I have opened, and not the issues I have commented on.

Best Answer

You can view issues you've commented on by using the following search string in your Issues page search box:

is:issue commenter:username

(Replace username with your GitHub username.)

This will show all issues that you've commented on. To show only open issues, add the is:open qualifier.

Source