Github Project Manager

create_project

Create a new GitHub project board

Input Schema

NameRequiredDescriptionDefault
bodyNoProject description
nameYesProject name
ownerYesOrganization name or username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "body": { "description": "Project description", "type": "string" }, "name": { "description": "Project name", "type": "string" }, "owner": { "description": "Organization name or username", "type": "string" } }, "required": [ "owner", "name" ], "type": "object" }