delete_issue
Remove an issue from a GitHub repository by specifying the owner, repo, and issue number using GraphQL API. Simplify issue cleanup and repository management.
Instructions
Delete an issue from a GitHub repository using GraphQL API
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"
}