update_issue
Modify Linear issue details including title, description, status, priority, due date, and parent relationships to keep project tracking current.
Instructions
A tool that updates an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The description of the issue | |
dueDate | No | The due date of the issue | |
id | Yes | The ID of the issue to update | |
parentId | No | The ID of the parent issue, used to create a sub-issue | |
priority | No | The priority of the issue | no_priority |
sortOrder | No | The sort order of the issue | |
status | No | The status of the issue | backlog |
title | No | The title of the issue | |
trashed | No | Whether the issue is trashed |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the issue",
"type": "string"
},
"dueDate": {
"description": "The due date of the issue",
"type": "string"
},
"id": {
"description": "The ID of the issue to update",
"type": "string"
},
"parentId": {
"description": "The ID of the parent issue, used to create a sub-issue",
"type": "string"
},
"priority": {
"default": "no_priority",
"description": "The priority of the issue",
"enum": [
"no_priority",
"urgent",
"high",
"medium",
"low"
],
"type": "string"
},
"sortOrder": {
"description": "The sort order of the issue",
"type": "number"
},
"status": {
"default": "backlog",
"description": "The status of the issue",
"enum": [
"triage",
"backlog",
"todo",
"in_progress",
"done",
"canceled"
],
"type": "string"
},
"title": {
"description": "The title of the issue",
"type": "string"
},
"trashed": {
"description": "Whether the issue is trashed",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}