get_pull_request_comment
Retrieve detailed information about a specific comment on a pull request in an AtomGit repository using the provided owner, repo, pull number, and comment ID.
Instructions
Get details of a specific pull request comment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_id | Yes | ||
owner | Yes | ||
pull_number | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"comment_id": {
"type": "number"
},
"owner": {
"type": "string"
},
"pull_number": {
"type": "number"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"pull_number",
"comment_id"
],
"type": "object"
}