Github Project Manager

create_pull_request_review_comment

Create a review comment for a pull request

Input Schema

NameRequiredDescriptionDefault
bodyYesThe text of the review comment
commit_idNoThe SHA of the commit to comment on
in_reply_toNoThe comment ID to reply to
ownerYesRepository owner (username or organization)
pathNoThe relative path to the file being commented on
positionNoThe position in the diff where the comment should be placed
pull_numberYesPull request number
repoYesRepository name

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "The text of the review comment", "type": "string" }, "commit_id": { "description": "The SHA of the commit to comment on", "type": "string" }, "in_reply_to": { "description": "The comment ID to reply to", "type": "number" }, "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "path": { "description": "The relative path to the file being commented on", "type": "string" }, "position": { "description": "The position in the diff where the comment should be placed", "type": "number" }, "pull_number": { "description": "Pull request number", "type": "number" }, "repo": { "description": "Repository name", "type": "string" } }, "required": [ "owner", "repo", "pull_number", "body" ], "type": "object" }