get_issue

Retrieve specific issues from Gitee repositories by providing the owner, repo, and issue number to streamline issue tracking and management.

Instructions

获取 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" }
ID: cck9xigm1d