Get a list of one’s own comments on GitHub
Problem: Keeping track of your comments on GitHub, especially the most recent ones.
A solution
In the search bar at the top right, with “Type / to search”, paste the following in and press Enter:
is:issue commenter:@me sort:updated-desc
“desc” is for descending order. It presumes being logged in at GitHub.
Note that it will list the GitHub issue, not the particular comment(s). Thus, it is necessary to open the GitHub issue and search for own comments on it.
Or just (as descending order is the default):
is:issue commenter:@me sort:updated
Or as a URL, e.g., for use in a bookmark in a web browser:
https://github.com/search?q=is%3Aissue%20commenter%3A%40me%20sort%3Aupdated-desc&type=issues
Though it does not seem 100% reliable, e.g., wrt. the sort order.
References
- Sorting search results, Sort by updated date. Official GitHub documentation.
Leave a Reply