create_project
Initiate a new GitHub project by specifying title, owner, and visibility. Streamlines project setup and integrates with advanced workflows for efficient task and sprint management.
Instructions
Create a new GitHub project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | ||
shortDescription | No | ||
title | Yes | ||
visibility | Yes |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"type": "string"
},
"shortDescription": {
"type": "string"
},
"title": {
"type": "string"
},
"visibility": {
"type": "string"
}
},
"required": [
"title",
"owner",
"visibility"
],
"type": "object"
}