create_github_issue
Create GitHub issues with structured templates, summaries, technical notes, and labels automatically generated from code changes.
Instructions
Cria uma issue no GitHub usando Octokit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | ||
body | No | ||
labels | No | ||
owner | No | ||
repo | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assignees": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"body": {
"default": "",
"type": "string"
},
"labels": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"owner": {
"default": "",
"type": "string"
},
"repo": {
"default": "",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}