Gitee

by normal-coder
Verified

create_issue

在 Gitee 仓库中创建 Issue

Input Schema

NameRequiredDescriptionDefault
assigneesNoUsers assigned to the issue
bodyNoIssue content
labelsNoLabels
milestoneNoMilestone ID
ownerYesRepository owner path (enterprise, organization, or personal path)
repoYesRepository path
security_holeNoWhether the issue is private, default is false
titleYesIssue 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" }, "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" }, "security_hole": { "description": "Whether the issue is private, default is false", "type": "boolean" }, "title": { "description": "Issue title", "type": "string" } }, "required": [ "owner", "repo", "title" ], "type": "object" }