POST
github_pulls_reply_to_review_comment.py
from charter.packs import github
result = await github.pulls_reply_to_review_comment.ainvoke({"owner": ..., "repo": ..., "pullNumber": ..., "commentId": ..., "body": ...})
Requires
repo, read:user.Path parameters
| Field | Type | Description |
|---|---|---|
owner * | string | The account owner of the repository. The name is not case sensitive. |
repo * | string | The name of the repository without the .git extension. The name is not case sensitive. |
pullNumber * | integer | The number that identifies the pull request. |
commentId * | integer | The unique identifier of the top-level review comment being replied to. A reply’s own id is not accepted here. |
Body
| Field | Type | Description |
|---|---|---|
body * | string | The text of the review comment. |