add-work-item-comment
Enable team collaboration by adding comments to Azure DevOps work items. Specify work item ID and comment text to enhance task communication and tracking within projects.
Instructions
Add a comment to an existing work item in Azure DevOps
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | Comment text to add | |
id | Yes | Work item ID to add comment to |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Comment text to add",
"type": "string"
},
"id": {
"description": "Work item ID to add comment to",
"type": "number"
}
},
"required": [
"id",
"comment"
],
"type": "object"
}