update_wiki_page
Update a Gitea wiki page's content or rename it via pageName, with optional commit message. PATCH semantics: only specified fields change.
Instructions
Edit an existing wiki page by pageName (PATCH: only provided fields change). content is plain Markdown (base64 handled for you); omit it to keep the current content. RISK: passing title RENAMES the page, which breaks existing links to the old name. Read the page with get_wiki_page first if it may have changed since your last read. Returns the updated page with decoded content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repo | No | Repository name (defaults to GITEA_DEFAULT_REPO) | |
| owner | No | Repository owner (defaults to GITEA_DEFAULT_OWNER) | |
| title | No | New page title — RENAMES the page (omit to keep the current title) | |
| content | No | New page content in Markdown (plain text — base64 encoding is handled for you) | |
| message | No | Optional commit message summarizing the change | |
| pageName | Yes | Wiki page name/title as it appears in the wiki URL (e.g. 'Home', 'Getting-Started') |