create_project_column
Create a new column in a GitHub project by specifying the project ID and column name. Ideal for organizing tasks and workflows efficiently.
Instructions
Create a new column for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the column | |
project_id | Yes | The ID of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the column",
"type": "string"
},
"project_id": {
"description": "The ID of the project",
"type": "number"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}