repo_resolve_comment
Resolves comment threads in pull requests on Azure DevOps repositories. Specify repository ID, pull request ID, and thread ID to mark threads as resolved efficiently.
Instructions
Resolves a specific comment thread on a pull request.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullResponse | No | Return full thread JSON response instead of a simple confirmation message. | |
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 be resolved. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fullResponse": {
"default": false,
"description": "Return full thread JSON response instead of a simple confirmation message.",
"type": "boolean"
},
"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 be resolved.",
"type": "number"
}
},
"required": [
"repositoryId",
"pullRequestId",
"threadId"
],
"type": "object"
}