ponder-lab / GitHub-Issue-Classifier

Python script to mine for GitHub issues + comments and classify them.
MIT License
6 stars 0 forks source link

Description not considered a comment? #16

Closed khatchad closed 3 years ago

khatchad commented 3 years ago

Regarding this match, is the description not considered a comment? I don't see it classified below.

issueID issueURL_API commentLine commentURL category
808389782 https://api.github.com/repos/nrontsis/PILCO/issues/57 SCREEN_NAME pol think https://github.com/nrontsis/PILCO/pull/57#issuecomment-779112746 Social Conversation
y3pio commented 3 years ago

It is not considered a comment, it's part of the issue's body that we get back from the issue API call. You can see the description that you linked below in the issue API call: https://api.github.com/repos/nrontsis/PILCO/issues/57

And currently right now we are only processing the results/comments returned from the comments API call.

I guess we should also consider the issue body as part of the comments that we are trying to classify. Will add this on as an enhancement.