create_project_wiki_page
Automate the creation of a new wiki page for a GitLab project, specifying title, content, format, and project ID to streamline documentation processes.
Instructions
Create a new wiki page for a GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | ||
| format | No | ||
| project_id | No | ||
| title | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"format": {
"enum": [
"markdown",
"rdoc",
"asciidoc",
"org"
],
"type": "string"
},
"project_id": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
}