gitlab_create_merge_request_note
Add comments to GitLab merge requests by specifying the project ID, merge request ID, and note content to facilitate code review and collaboration.
Instructions
Add a comment to a merge request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | The content of the note/comment | |
merge_request_iid | Yes | The internal ID of the merge request | |
project_id | Yes | The ID or URL-encoded path of the project |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "The content of the note/comment",
"type": "string"
},
"merge_request_iid": {
"description": "The internal ID of the merge request",
"type": "number"
},
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
}
},
"required": [
"project_id",
"merge_request_iid",
"body"
],
"type": "object"
}