get_issue
Retrieve detailed information about a specific issue in a GitHub repository by providing the repository owner, repo name, and issue number. Facilitates precise issue tracking and management.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issue_number": {
"type": "number"
},
"owner": {
"type": "string"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number"
],
"type": "object"
}