Gitee

by normal-coder
Verified

update_issue

更新 Gitee 仓库中的 Issue

Input Schema

NameRequiredDescriptionDefault
assigneesNoUsers assigned to the issue
bodyNoIssue content
issue_numberYesIssue number
labelsNoLabels
milestoneNoMilestone ID
ownerYesRepository owner path (enterprise, organization, or personal path)
repoYesRepository path
stateNoIssue state
titleNoIssue title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignees": { "description": "Users assigned to the issue", "items": { "type": "string" }, "type": "array" }, "body": { "description": "Issue content", "type": "string" }, "issue_number": { "description": "Issue number", "type": [ "number", "string" ] }, "labels": { "description": "Labels", "items": { "type": "string" }, "type": "array" }, "milestone": { "description": "Milestone ID", "type": "number" }, "owner": { "description": "Repository owner path (enterprise, organization, or personal path)", "type": "string" }, "repo": { "description": "Repository path", "type": "string" }, "state": { "description": "Issue state", "enum": [ "open", "closed", "progressing" ], "type": "string" }, "title": { "description": "Issue title", "type": "string" } }, "required": [ "owner", "repo", "issue_number" ], "type": "object" }