Gitee

by normal-coder
Verified

add_issue_comment

向 Gitee 仓库中的 Issue 添加评论

Input Schema

NameRequiredDescriptionDefault
bodyYesComment content
issue_numberYesIssue number
ownerYesRepository owner path (enterprise, organization, or personal path)
repoYesRepository 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" }