update_project_column
Modify the name of an existing project column in GitHub by specifying its unique identifier and the desired new name.
Instructions
Update an existing project column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
column_id | Yes | The unique identifier of the column | |
name | Yes | New name of the column |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"column_id": {
"description": "The unique identifier of the column",
"type": "number"
},
"name": {
"description": "New name of the column",
"type": "string"
}
},
"required": [
"column_id",
"name"
],
"type": "object"
}