reply_to_review_comment
Respond to specific discussion threads in merge request reviews by adding comments that address feedback and continue code review conversations.
Instructions
Reply to a specific discussion thread in a merge request review
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| merge_request_iid | Yes | Internal ID of the merge request | |
| discussion_id | Yes | ID of the discussion thread to reply to | |
| body | Yes | Content of the reply comment |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Content of the reply comment",
"type": "string"
},
"discussion_id": {
"description": "ID of the discussion thread to reply to",
"type": "string"
},
"merge_request_iid": {
"description": "Internal ID of the merge request",
"minimum": 1,
"type": "integer"
}
},
"required": [
"merge_request_iid",
"discussion_id",
"body"
],
"type": "object"
}