get-issue
Retrieve detailed information about a specific GitHub repository issue by providing the repository owner, repository name, and issue number.
Instructions
Get details of a specific issue in a GitHub repository.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_number | Yes | ||
owner | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issue_number": {
"type": "number"
},
"owner": {
"type": "string"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number"
],
"type": "object"
}