update_comment
Modify or remove an existing comment on a Linear issue by providing the comment ID and new content or setting the delete flag.
Instructions
A tool that updates or deletes an existing comment on an issue in Linear
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | The new content for the comment | |
commentId | Yes | The ID of the comment to update | |
delete | No | Whether to delete the comment |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "The new content for the comment",
"type": "string"
},
"commentId": {
"description": "The ID of the comment to update",
"type": "string"
},
"delete": {
"default": false,
"description": "Whether to delete the comment",
"type": "boolean"
}
},
"required": [
"commentId"
],
"type": "object"
}