linear_addIssueLabel
Add a specified label to a Linear issue using its issue and label IDs, enabling efficient issue categorization and management within the Linear project system.
Instructions
Add a label to an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | ID or identifier of the issue to add the label to (e.g., ABC-123) | |
labelId | Yes | ID of the label to add to the issue |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "ID or identifier of the issue to add the label to (e.g., ABC-123)",
"type": "string"
},
"labelId": {
"description": "ID of the label to add to the issue",
"type": "string"
}
},
"required": [
"issueId",
"labelId"
],
"type": "object"
}