update_issue
Modify existing issues in GitHub repositories by updating titles, descriptions, assignees, milestones, labels, and status. Simplify issue management and collaboration across projects.
Instructions
Update an existing issue in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | ||
body | No | ||
issue_number | Yes | ||
labels | No | ||
milestone | No | ||
owner | Yes | ||
repo | Yes | ||
state | No | ||
title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assignees": {
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"type": "string"
},
"issue_number": {
"type": "number"
},
"labels": {
"items": {
"type": "string"
},
"type": "array"
},
"milestone": {
"type": "number"
},
"owner": {
"type": "string"
},
"repo": {
"type": "string"
},
"state": {
"enum": [
"open",
"closed"
],
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number"
],
"type": "object"
}