Linear

by tacticlaunch
Verified

linear_addIssueLabel

Add a label to an issue in Linear

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the issue to add the label to (e.g., ABC-123)
labelIdYesID 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" }