update_issue_status
Update the status of a Redmine issue by specifying the issue ID and either a new status ID or name. Optionally add notes to document changes. Returns the update result message.
Instructions
更新議題狀態
Args:
issue_id: 議題 ID
status_id: 新的狀態 ID(與 status_name 二選一)
status_name: 新的狀態名稱(與 status_id 二選一)
notes: 更新備註(可選)
Returns:
更新結果訊息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ||
notes | No | ||
status_id | No | ||
status_name | No |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"title": "Issue Id",
"type": "integer"
},
"notes": {
"default": "",
"title": "Notes",
"type": "string"
},
"status_id": {
"default": null,
"title": "Status Id",
"type": "integer"
},
"status_name": {
"default": null,
"title": "Status Name",
"type": "string"
}
},
"required": [
"issue_id"
],
"title": "update_issue_statusArguments",
"type": "object"
}