add-issues-to-cycle
Add multiple issues to a specific project cycle in Plane.so to organize and track work items within defined time periods.
Instructions
Add issues to a cycle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cycle_id | Yes | ID of the cycle to add issues to | |
issues | Yes | Array of issue IDs to add to the cycle | |
project_id | Yes | ID of the project containing the cycle |
Input Schema (JSON Schema)
{
"properties": {
"cycle_id": {
"description": "ID of the cycle to add issues to",
"type": "string"
},
"issues": {
"description": "Array of issue IDs to add to the cycle",
"items": {
"type": "string"
},
"type": "array"
},
"project_id": {
"description": "ID of the project containing the cycle",
"type": "string"
}
},
"required": [
"project_id",
"cycle_id",
"issues"
],
"type": "object"
}