2

I there a way to retrieve my GitHub comments? I've posted some comments in many repository issues to asks questions, and I've found the answers by myself so I want to share my answers.

Ben
  • 3,972
  • 8
  • 43
  • 82

1 Answers1

1

Using the GitHub API, you can get comments on issues:

GET /repos/:owner/:repo/issues/:number/comments

You can use GAPIGUI to make API calls without coding.

Or if you just use the search feature using type:issue in the query, search for:

commenter:Ben type:issue
jrbedard
  • 3,662
  • 5
  • 30
  • 34
  • There is no end user interface to do that? It's really a missing feature. I don't want to spend time on the API, I just want to share my anwers as a end user. :(. BTW thank you for your reply. – Ben Oct 15 '16 at 12:21
  • Added the search query: "commenter:Ben type:issue" – jrbedard Oct 15 '16 at 12:24
  • 1
    Thank you! It's very helpfull! – Ben Oct 15 '16 at 12:31