create_pull_request_comment
Add comments to a pull request on AtomGit repositories using repo owner, repository name, pull request number, and comment text to facilitate collaboration and feedback.
Instructions
Create a comment on a pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
pull_number | Yes | ||
repo | Yes | ||
repoOwner | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"type": "string"
},
"pull_number": {
"type": "number"
},
"repo": {
"type": "string"
},
"repoOwner": {
"type": "string"
}
},
"required": [
"repoOwner",
"repo",
"pull_number",
"body"
],
"type": "object"
}