I am trying to retrieve list of comments for particular Pull Request using go-github. I am interested in comments listed in the section Conversation not the review comments.
I tried to use PullRequests.ListComments, but it returns review comments
PullRequests.ListComments(ctx, ghOrgName, ghRepoName, *value.PullRequest.Number, &github.PullRequestListCommentsOptions{})
I didnt find suitable function in the documentation
Thanks in advance