list_wiki_revisions
List revision history for a wiki page, showing commit messages, authors, and SHAs. Paginate to navigate all changes, enabling audits of page edits before reverting or summarizing.
Instructions
List the revision history of one wiki page by pageName (newest first). Returns { commits: [{ sha, message, author, commiter }], count }. Paginated: page is 1-based; keep paging while a page returns a full page of commits. Use to audit who changed a page and when, before reverting or summarizing changes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number | |
| repo | No | Repository name (defaults to GITEA_DEFAULT_REPO) | |
| owner | No | Repository owner (defaults to GITEA_DEFAULT_OWNER) | |
| pageName | Yes | Wiki page name/title as it appears in the wiki URL (e.g. 'Home', 'Getting-Started') |