linear_addIssueToProject
Associates an existing issue with a specified project in Linear, enabling better organization and tracking of tasks within project workflows. Requires issue ID and project ID as inputs.
Instructions
Add an existing issue to a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | ID or identifier of the issue to add to the project | |
projectId | Yes | ID of the project to add the issue to |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "ID or identifier of the issue to add to the project",
"type": "string"
},
"projectId": {
"description": "ID of the project to add the issue to",
"type": "string"
}
},
"required": [
"issueId",
"projectId"
],
"type": "object"
}