add_issue_comment
Add comments to issues in Gitee repositories by specifying the repository owner, repo, issue number, and comment content.
Instructions
向 Gitee 仓库中的 Issue 添加评论
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Comment content | |
issue_number | Yes | Issue number | |
owner | Yes | Repository owner path (enterprise, organization, or personal path) | |
repo | Yes | Repository path |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "Comment content",
"type": "string"
},
"issue_number": {
"description": "Issue number",
"type": [
"number",
"string"
]
},
"owner": {
"description": "Repository owner path (enterprise, organization, or personal path)",
"type": "string"
},
"repo": {
"description": "Repository path",
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number",
"body"
],
"type": "object"
}