Skip to main content
Update, close, or reopen a GitHub issue

Tool details

FieldValue
Namegithub__update_issue
GroupIntegrations

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "owner": {
      "type": "string",
      "description": "Repository owner"
    },
    "repo": {
      "type": "string",
      "description": "Repository name"
    },
    "issue_number": {
      "type": "number",
      "description": "Issue number"
    },
    "title": {
      "type": "string",
      "description": "Updated issue title"
    },
    "body": {
      "type": "string",
      "description": "Updated issue body (markdown)"
    },
    "state": {
      "type": "string",
      "description": "Issue state: open or closed"
    },
    "labels": {
      "type": "array",
      "description": "Replacement label names"
    },
    "assignees": {
      "type": "array",
      "description": "Replacement assignee usernames"
    }
  },
  "required": [
    "owner",
    "repo",
    "issue_number"
  ],
  "description": "Input schema for the github__update_issue tool."
}

Output schema

This tool does not publish an output schema.