create_issue
Generate a new issue in a GitHub repository by specifying owner, repo, title, and optional details like body, assignees, milestone, and labels.
Instructions
Create a new issue in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | ||
body | No | ||
labels | No | ||
milestone | No | ||
owner | Yes | ||
repo | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assignees": {
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"type": "string"
},
"labels": {
"items": {
"type": "string"
},
"type": "array"
},
"milestone": {
"type": "number"
},
"owner": {
"type": "string"
},
"repo": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"title"
],
"type": "object"
}