Gitee

by normal-coder
Verified

get_issue

获取 Gitee 仓库中的特定 Issue

Input Schema

NameRequiredDescriptionDefault
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": { "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" ], "type": "object" }