Update merge request
documentedUpdate details of a merge request.
PUT /projects/:id/merge_requests/:merge_request_iidProjectsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://gitlab.com/api/v4/projects/{{$project_id}}/merge_requests/{{$merge_request_iid}}" \
-X PUT \
-H "PRIVATE-TOKEN: {{GITLAB_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "target_branch": "{{$target_branch}}", "assignee_id": {{$assignee_id}}, "labels": "{{$labels}}", "milestone_id": {{$milestone_id}}, "remove_source_branch": {{$remove_source_branch}}}'