linear_removeIssueLabel
Remove a specific label from an issue in Linear by specifying the issue ID and label ID. Streamline issue management and maintain project organization effectively.
Instructions
Remove a label from an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes | ID or identifier of the issue to remove the label from (e.g., ABC-123) | |
labelId | Yes | ID of the label to remove from the issue |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"description": "ID or identifier of the issue to remove the label from (e.g., ABC-123)",
"type": "string"
},
"labelId": {
"description": "ID of the label to remove from the issue",
"type": "string"
}
},
"required": [
"issueId",
"labelId"
],
"type": "object"
}