create_merge_request
Create a new merge request in a GitLab project to propose code changes from one branch to another, enabling team review and integration.
Instructions
Create a new merge request in a GitLab project
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID or complete URL-encoded path to project | |
| title | Yes | Merge request title | |
| description | No | Merge request description | |
| source_branch | Yes | Branch containing changes | |
| target_branch | Yes | Branch to merge into | |
| target_project_id | No | Numeric ID of the target project. | |
| assignee_ids | No | The ID of the users to assign the MR to | |
| reviewer_ids | No | The ID of the users to assign as reviewers of the MR | |
| labels | No | Labels for the MR | |
| draft | No | Create as draft merge request | |
| allow_collaboration | No | Allow commits from upstream members | |
| remove_source_branch | No | Flag indicating if a merge request should remove the source branch when merging. | |
| squash | No | If true, squash all commits into a single commit on merge. |