linear_addIssueToCycle
Add a specific issue to a designated cycle in the Linear project management system to organize and track progress effectively.
Instructions
Add an issue to a cycle
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cycleId | Yes | ID of the cycle to add the issue to | |
issueId | Yes | ID or identifier of the issue to add to the cycle |
Input Schema (JSON Schema)
{
"properties": {
"cycleId": {
"description": "ID of the cycle to add the issue to",
"type": "string"
},
"issueId": {
"description": "ID or identifier of the issue to add to the cycle",
"type": "string"
}
},
"required": [
"issueId",
"cycleId"
],
"type": "object"
}