We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, It's seem that your api don't implement the creation of a comment for a pullRequest: POST /repos/:owner/:repo/pulls/:number/comments
the doc here: https://developer.github.com/v3/pulls/comments/#create-a-comment
The text was updated successfully, but these errors were encountered:
This was confusing to me at first, but it is important to note that GHPullRequest inherits from GHIssue. This gives it a method .comment()
GHPullRequest
GHIssue
.comment()
e.g.
GHPullRequest pullRequest = ... pullRequest.comment("Blue skies, smiling at me....");
Sorry, something went wrong.
This is implemented as GHPullRequestReviewComment which is separate from GHIssueComment
GHPullRequestReviewComment
GHIssueComment
No branches or pull requests
Hello,
It's seem that your api don't implement the creation of a comment for a pullRequest:
POST /repos/:owner/:repo/pulls/:number/comments
the doc here:
https://developer.github.com/v3/pulls/comments/#create-a-comment
The text was updated successfully, but these errors were encountered: