get_issue
Retrieve detailed information about a specific GitHub issue by providing its issue ID. Useful for tracking, debugging, and managing tasks within GitHub projects.
Instructions
Get details of a specific GitHub issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issueId": {
"type": "string"
}
},
"required": [
"issueId"
],
"type": "object"
}