create_issue
Create and manage Issues in Gitee repositories by specifying owner, repo, title, body, assignees, milestones, and labels.
Instructions
在 Gitee 仓库中创建 Issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | Users assigned to the issue | |
body | No | Issue content | |
labels | No | Labels | |
milestone | No | Milestone ID | |
owner | Yes | Repository owner path (enterprise, organization, or personal path) | |
repo | Yes | Repository path | |
security_hole | No | Whether the issue is private, default is false | |
title | Yes | Issue 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"
}