update_project_field
Modify custom fields in GitHub projects, including updating names, descriptions, options, and required status, to streamline project management workflows.
Instructions
Update a custom field in a GitHub project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | ||
| fieldId | Yes | ||
| name | No | ||
| options | No | ||
| projectId | Yes | ||
| required | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"fieldId": {
"type": "string"
},
"name": {
"type": "string"
},
"options": {
"items": {
"properties": {
"color": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
},
"projectId": {
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"projectId",
"fieldId"
],
"type": "object"
}