create_issue_comment
Add a comment to a specific issue in an AtomGit repository. Specify repository owner, repository name, issue number, and comment content in Markdown format.
Instructions
Create an issue comment in a AtomGit repository issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Issue comment content (in Markdown format) | |
issue_number | Yes | Issue number | |
owner | Yes | Repository owner, typically referred to as 'username (owner)'. Case-insensitive. | |
repo | Yes | Repository name. Case-insensitive. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "Issue comment content (in Markdown format)",
"type": "string"
},
"issue_number": {
"description": "Issue number",
"type": "number"
},
"owner": {
"description": "Repository owner, typically referred to as 'username (owner)'. Case-insensitive.",
"type": "string"
},
"repo": {
"description": "Repository name. Case-insensitive.",
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number",
"body"
],
"type": "object"
}