repo_reply_to_comment
Respond to pull request comments in Azure DevOps repositories by specifying repository, PR, thread IDs, and content. Simplify collaboration with direct replies using PAT authentication.
Instructions
Replies to a specific comment on a pull request.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the comment to be added. | |
fullResponse | No | Return full comment JSON response instead of a simple confirmation message. | |
project | No | Project ID or project name (optional) | |
pullRequestId | Yes | The ID of the pull request where the comment thread exists. | |
repositoryId | Yes | The ID of the repository where the pull request is located. | |
threadId | Yes | The ID of the thread to which the comment will be added. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "The content of the comment to be added.",
"type": "string"
},
"fullResponse": {
"default": false,
"description": "Return full comment JSON response instead of a simple confirmation message.",
"type": "boolean"
},
"project": {
"description": "Project ID or project name (optional)",
"type": "string"
},
"pullRequestId": {
"description": "The ID of the pull request where the comment thread exists.",
"type": "number"
},
"repositoryId": {
"description": "The ID of the repository where the pull request is located.",
"type": "string"
},
"threadId": {
"description": "The ID of the thread to which the comment will be added.",
"type": "number"
}
},
"required": [
"repositoryId",
"pullRequestId",
"threadId",
"content"
],
"type": "object"
}