update_issue
Update an existing GitLab issue with options to modify title, description, labels, milestone, assignees, due date, weight, iteration, and status. Use dry-run to preview changes before applying.
Instructions
Mettre a jour une issue existante. Par defaut dry_run=true : retourne un apercu sans modifier. Passer dry_run=false apres confirmation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID du projet | |
| issue_iid | Yes | Numero de l'issue (IID) | |
| title | No | Nouveau titre | |
| description | No | Nouvelle description (Markdown) | |
| add_labels | No | Labels to add (comma-separated). Does NOT remove existing labels. | |
| remove_labels | No | Labels to remove (comma-separated). | |
| milestone_id | No | ID du milestone | |
| assignee_ids | No | IDs des assignees | |
| due_date | No | Nouvelle date d'echeance (YYYY-MM-DD) | |
| weight | No | Nouveau poids | |
| iteration_id | No | ID de l'iteration (sprint) a associer. Route via workItemUpdate.iterationWidget — l'ancien UpdateIssueInput.iterationId echoue silencieusement sur les Work Items modernes. | |
| status_id | No | Status widget GID (GitLab 17+). Get the valid ids from list_workitem_statuses with work_item_type=ISSUE. | |
| dry_run | No | Dry run mode (default: true). When true, returns a preview of the action without executing it. Set to false only after user confirmation. |