close_issue
Close issues in Redmine by setting them to a completed state. Specify the issue ID, optional notes, and completion percentage. Returns confirmation of the closure.
Instructions
關閉議題(設定為已完成狀態)
Args:
issue_id: 議題 ID
notes: 關閉備註(可選)
done_ratio: 完成百分比(預設 100%)
Returns:
關閉結果訊息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
done_ratio | No | ||
issue_id | Yes | ||
notes | No |
Input Schema (JSON Schema)
{
"properties": {
"done_ratio": {
"default": 100,
"title": "Done Ratio",
"type": "integer"
},
"issue_id": {
"title": "Issue Id",
"type": "integer"
},
"notes": {
"default": "",
"title": "Notes",
"type": "string"
}
},
"required": [
"issue_id"
],
"title": "close_issueArguments",
"type": "object"
}