linear_addProjectToInitiative
Link a project to an initiative in Linear by specifying both IDs, enabling streamlined project organization and tracking within the Linear system.
Instructions
Add a project to an initiative
Input Schema
Name | Required | Description | Default |
---|---|---|---|
initiativeId | Yes | The ID of the initiative | |
projectId | Yes | The ID of the project to add |
Input Schema (JSON Schema)
{
"properties": {
"initiativeId": {
"description": "The ID of the initiative",
"type": "string"
},
"projectId": {
"description": "The ID of the project to add",
"type": "string"
}
},
"required": [
"initiativeId",
"projectId"
],
"type": "object"
}