wit_add_work_item_comment
Add comments to Azure DevOps work items using ID, specifying text and format (markdown or HTML) for efficient task collaboration and updates.
Instructions
Add comment to a work item by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | The text of the comment to add to the work item. | |
format | No | html | |
project | Yes | The name or ID of the Azure DevOps project. | |
workItemId | Yes | The ID of the work item to add a comment to. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment": {
"description": "The text of the comment to add to the work item.",
"type": "string"
},
"format": {
"default": "html",
"enum": [
"markdown",
"html"
],
"type": "string"
},
"project": {
"description": "The name or ID of the Azure DevOps project.",
"type": "string"
},
"workItemId": {
"description": "The ID of the work item to add a comment to.",
"type": "number"
}
},
"required": [
"project",
"workItemId",
"comment"
],
"type": "object"
}