update_issue
Modify GitHub issues directly by updating titles, descriptions, statuses, milestones, assignees, and labels. Streamline project management tasks and keep issue tracking in sync with project workflows.
Instructions
Update a GitHub issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | ||
description | No | ||
issueId | Yes | ||
labels | No | ||
milestoneId | Yes | ||
status | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"type": "string"
},
"issueId": {
"type": "string"
},
"labels": {
"items": {
"type": "string"
},
"type": "array"
},
"milestoneId": {
"type": "string"
},
"status": {
"enum": [
"open",
"closed"
]
},
"title": {
"type": "string"
}
},
"required": [
"issueId",
"milestoneId"
],
"type": "object"
}