Github Project Manager

update_issue

Update an existing issue in a GitHub repository

Input Schema

NameRequiredDescriptionDefault
assigneesNoGitHub usernames to assign
bodyNoNew issue body
issue_numberYesIssue number
labelsNoLabels to set
milestoneNoMilestone to set
ownerYesRepository owner (username or organization)
repoYesRepository name
stateNoNew issue state
titleNoNew issue title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignees": { "description": "GitHub usernames to assign", "items": { "type": "string" }, "type": "array" }, "body": { "description": "New issue body", "type": "string" }, "issue_number": { "description": "Issue number", "type": "number" }, "labels": { "description": "Labels to set", "items": { "type": "string" }, "type": "array" }, "milestone": { "description": "Milestone to set", "type": [ "number", "null" ] }, "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "repo": { "description": "Repository name", "type": "string" }, "state": { "description": "New issue state", "enum": [ "open", "closed" ], "type": "string" }, "title": { "description": "New issue title", "type": "string" } }, "required": [ "owner", "repo", "issue_number" ], "type": "object" }