{"id":16266230,"url":"https://github.com/ineshbose/wiki-action","last_synced_at":"2026-05-15T12:33:17.399Z","repository":{"id":65160164,"uuid":"427761457","full_name":"ineshbose/wiki-action","owner":"ineshbose","description":"Create a sidebar and publish docs from your repo","archived":false,"fork":false,"pushed_at":"2022-01-15T17:00:32.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-13T05:02:01.167Z","etag":null,"topics":["actions","github-actions","github-wiki","github-wiki-sidebar","wiki"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ineshbose.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-13T20:03:44.000Z","updated_at":"2023-09-13T01:56:29.000Z","dependencies_parsed_at":"2023-01-13T15:43:46.556Z","dependency_job_id":null,"html_url":"https://github.com/ineshbose/wiki-action","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ineshbose/wiki-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ineshbose%2Fwiki-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ineshbose%2Fwiki-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ineshbose%2Fwiki-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ineshbose%2Fwiki-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ineshbose","download_url":"https://codeload.github.com/ineshbose/wiki-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ineshbose%2Fwiki-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266382099,"owners_count":23920632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-actions","github-wiki","github-wiki-sidebar","wiki"],"created_at":"2024-10-10T17:40:23.017Z","updated_at":"2026-05-15T12:33:12.379Z","avatar_url":"https://github.com/ineshbose.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wiki Action\n\nA [GitHub Action](https://help.github.com/en/actions) that updates your project's [wiki](https://help.github.com/en/github/building-a-strong-community/about-wikis) **(with a custom sidebar)** from a workflow. **This project is in BETA. Please report bugs if encountered.**\n\n## Usage\n\n```yml\nname: Update Wiki\n\n# on: [push]\n\n# recommended\non:\n  push:\n    paths:\n      - 'wiki/**'\n    branches:\n      - master\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v1\n\n      - uses: ineshbose/wiki-action@v1\n        with:\n          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          WIKI_DIR: 'wiki'\n          AUTO_SIDEBAR: true\n```\n\n\u003ctable\u003e\n\u003cthead\u003e\n  \u003ctr\u003e\n    \u003cth\u003eArgument\u003c/th\u003e\n    \u003cth\u003eRequired\u003c/th\u003e\n    \u003cth\u003eDefault\u003c/th\u003e\n    \u003cth\u003eDescription\u003c/th\u003e\n  \u003c/tr\u003e\n\u003c/thead\u003e\n\u003ctbody\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eGH_TOKEN\u003c/td\u003e\n    \u003ctd\u003eYes\u003c/td\u003e\n    \u003ctd\u003e\u003c/td\u003e\n    \u003ctd\u003eGitHub Token required to make changes. You can use ${{ secrets.GITHUB_TOKEN }}.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eWIKI_DIR\u003c/td\u003e\n    \u003ctd\u003eNo\u003c/td\u003e\n    \u003ctd\u003ewiki\u003c/td\u003e\n    \u003ctd\u003eThe directory relative to the repository root where the wiki files are.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eWIKI_IGNORE\u003c/td\u003e\n    \u003ctd\u003eNo\u003c/td\u003e\n    \u003ctd\u003e\u003c/td\u003e\n    \u003ctd\u003eFiles and directories (separated with a space) that are not supposed to be on the wiki (and sidebar).\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eAUTO_SIDEBAR\u003c/td\u003e\n    \u003ctd\u003eNo\u003c/td\u003e\n    \u003ctd\u003eFalse\u003c/td\u003e\n    \u003ctd\u003eAdd files onto _Sidebar.md for the Wiki according to the directory structure.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eSIDEBAR_IGNORE\u003c/td\u003e\n    \u003ctd\u003eNo\u003c/td\u003e\n    \u003ctd\u003e\u003c/td\u003e\n    \u003ctd\u003eFiles and directories (separated with a space) that are not supposed to be listed on the sidebar.\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/tbody\u003e\n\u003c/table\u003e\n\n### Sidebar Customisation\n\nYou can still create a `_Sidebar.md` with your project logo and more listings on it, and the rest of the items will be added towards the end. **Make sure that the file ends with an empty line.**","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fineshbose%2Fwiki-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fineshbose%2Fwiki-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fineshbose%2Fwiki-action/lists"}