Github Project Manager

create_issue

Create a new issue in a GitHub repository

Input Schema

NameRequiredDescriptionDefault
assigneesNoGitHub usernames to assign to this issue
bodyNoIssue body/description
labelsNoLabels to add to this issue
milestoneNoMilestone number to associate with this issue
ownerYesRepository owner (username or organization)
repoYesRepository name
titleYesIssue title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignees": { "description": "GitHub usernames to assign to this issue", "items": { "type": "string" }, "type": "array" }, "body": { "description": "Issue body/description", "type": "string" }, "labels": { "description": "Labels to add to this issue", "items": { "type": "string" }, "type": "array" }, "milestone": { "description": "Milestone number to associate with this issue", "type": "number" }, "owner": { "description": "Repository owner (username or organization)", "type": "string" }, "repo": { "description": "Repository name", "type": "string" }, "title": { "description": "Issue title", "type": "string" } }, "required": [ "owner", "repo", "title" ], "type": "object" }