create_merge_request
Generate a new merge request in a GitLab project by specifying source and target branches, title, description, and project details.
Instructions
Create a new merge request in a GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| allow_collaboration | No | ||
| description | No | ||
| draft | No | ||
| project_id | No | ||
| source_branch | No | ||
| target_branch | No | ||
| title | No |
Input Schema (JSON Schema)
{
"properties": {
"allow_collaboration": {
"type": "boolean"
},
"description": {
"type": "string"
},
"draft": {
"type": "boolean"
},
"project_id": {
"type": "string"
},
"source_branch": {
"type": "string"
},
"target_branch": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
}