update_issue
Modify Gitee repository issues by updating title, content, assignees, labels, milestone, or state to manage and organize tasks efficiently.
Instructions
更新 Gitee 仓库中的 Issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | Users assigned to the issue | |
body | No | Issue content | |
issue_number | Yes | Issue number | |
labels | No | Labels | |
milestone | No | Milestone ID | |
owner | Yes | Repository owner path (enterprise, organization, or personal path) | |
repo | Yes | Repository path | |
state | No | Issue state | |
title | No | 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"
},
"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"
}