update_project_view
Modify the name or layout of a GitHub project view to align with project management needs, supporting layouts like board, table, timeline, and roadmap.
Instructions
Update a view in a GitHub project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
layout | No | ||
name | No | ||
projectId | Yes | ||
viewId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"layout": {
"enum": [
"board",
"table",
"timeline",
"roadmap"
]
},
"name": {
"type": "string"
},
"projectId": {
"type": "string"
},
"viewId": {
"type": "string"
}
},
"required": [
"projectId",
"viewId"
],
"type": "object"
}