gitlab_create_merge_request_note_internal
Add a comment to a GitLab merge request with the option to mark it as an internal note, visible only to project members, for secure and targeted communication.
Instructions
Add a comment to a merge request with option to make it an internal note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | The content of the note/comment | |
internal | No | If true, the note will be marked as an internal note visible only to project members | |
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"
},
"internal": {
"description": "If true, the note will be marked as an internal note visible only to project members",
"type": "boolean"
},
"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"
}