create_group_wiki_page
Generate a new wiki page for a GitLab group by specifying title, content, format, and group ID. Simplify documentation management within GitLab projects.
Instructions
Create a new wiki page for a GitLab group
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | No | ||
| format | No | ||
| group_id | No | ||
| title | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"format": {
"enum": [
"markdown",
"rdoc",
"asciidoc",
"org"
],
"type": "string"
},
"group_id": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
}