linear_convertIssueToSubtask
Convert a Linear issue into a subtask by linking it to a parent issue using the issue and parent issue IDs. Simplify task hierarchy and organization in Linear projects.
Instructions
Convert an issue to a subtask
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | ID or identifier of the issue to convert (e.g., ABC-123) | |
parentIssueId | Yes | ID or identifier of the parent issue (e.g., ABC-456) |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "ID or identifier of the issue to convert (e.g., ABC-123)",
"type": "string"
},
"parentIssueId": {
"description": "ID or identifier of the parent issue (e.g., ABC-456)",
"type": "string"
}
},
"required": [
"issueId",
"parentIssueId"
],
"type": "object"
}