update_project
Modify GitHub project details, including title, description, visibility, and status, ensuring accurate project management and alignment with team goals.
Instructions
Update an existing GitHub project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
projectId | Yes | ||
status | No | ||
title | No | ||
visibility | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"type": "string"
},
"projectId": {
"type": "string"
},
"status": {
"enum": [
"active",
"closed"
]
},
"title": {
"type": "string"
},
"visibility": {
"enum": [
"private",
"public"
]
}
},
"required": [
"projectId"
],
"type": "object"
}