linear_update_label
Modify an existing label in Linear's issue tracking system by updating its name, color, description, parent label, or archive status.
Instructions
Update an existing label in Linear
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| archived | No | Whether to archive the label | |
| color | No | The new color for the label in hex format (e.g. "#FF0000") | |
| description | No | The new description for the label | |
| labelId | Yes | The ID of the label to update | |
| name | No | The new name for the label | |
| parentId | No | The ID of a new parent label |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"description": "Whether to archive the label",
"type": "boolean"
},
"color": {
"description": "The new color for the label in hex format (e.g. \"#FF0000\")",
"type": "string"
},
"description": {
"description": "The new description for the label",
"type": "string"
},
"labelId": {
"description": "The ID of the label to update",
"type": "string"
},
"name": {
"description": "The new name for the label",
"type": "string"
},
"parentId": {
"description": "The ID of a new parent label",
"type": "string"
}
},
"required": [
"labelId"
],
"type": "object"
}