gitlab_get_merge_request
Retrieve detailed information about a specific GitLab merge request by providing the project ID and merge request internal ID, enabling streamlined code review and collaboration.
Instructions
Get details of a specific merge request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"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"
],
"type": "object"
}