convert-to-sub-issue
Convert an existing issue to a sub-issue of another issue in Plane project management, establishing parent-child relationships to organize complex tasks and dependencies.
Instructions
Convert an existing issue to a sub-issue of another issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ID of the issue to convert to sub-issue | |
parent_issue_id | Yes | ID of the parent issue | |
project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue to convert to sub-issue",
"type": "string"
},
"parent_issue_id": {
"description": "ID of the parent issue",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"parent_issue_id"
],
"type": "object"
}