create_project
Generate a new project in a GitHub repository using owner, repo, and name inputs. Add a description to organize tasks, track progress, and manage workflows effectively.
Instructions
Create a new project for a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | The description of the project | |
name | Yes | The 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": "The description of the project",
"type": "string"
},
"name": {
"description": "The 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"
}