linear_update_issue
Modify an existing Linear issue by updating its title, description, state, team assignment, priority level, due date, or assignee.
Instructions
Update an existing Linear issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assigneeId | No | User ID to assign the issue to | |
| description | No | New issue description (markdown supported) | |
| dueDate | No | New due date | |
| issueId | Yes | Issue ID to update | |
| priority | No | New priority level (0-4), where 0=no priority, 1=urgent, 4=low | |
| stateId | No | New state ID | |
| teamId | No | New team ID | |
| title | No | New issue title |
Input Schema (JSON Schema)
{
"properties": {
"assigneeId": {
"description": "User ID to assign the issue to",
"type": "string"
},
"description": {
"description": "New issue description (markdown supported)",
"type": "string"
},
"dueDate": {
"description": "New due date",
"type": "string"
},
"issueId": {
"description": "Issue ID to update",
"type": "string"
},
"priority": {
"description": "New priority level (0-4), where 0=no priority, 1=urgent, 4=low",
"type": "number"
},
"stateId": {
"description": "New state ID",
"type": "string"
},
"teamId": {
"description": "New team ID",
"type": "string"
},
"title": {
"description": "New issue title",
"type": "string"
}
},
"required": [
"issueId"
],
"type": "object"
}