create_project
Automate the creation of a new project in a GitHub repository by specifying the owner, repository name, and project details. Simplify repository management with structured project setup.
Instructions
Create a new project in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Description of the project | |
name | Yes | Name of the project | |
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "Description of the project",
"type": "string"
},
"name": {
"description": "Name of the project",
"type": "string"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"name"
],
"type": "object"
}