convert-to-issue
Convert a sub-issue back to a regular issue by removing its parent relationship in Plane project management, allowing independent issue tracking.
Instructions
Convert a sub-issue back to a regular issue (remove parent relationship)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ID of the sub-issue to convert to regular issue | |
project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the sub-issue to convert to regular issue",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}