Action to update repository's wiki with changes from main repository.
Find a file
2021-08-29 11:48:54 +03:00
action.yaml Fixed input variables recieve method 2021-07-08 23:07:08 +03:00
LICENSE.md v1 Release 2021-05-03 22:31:30 +03:00
readme.md Fixed typo 2021-08-29 11:48:54 +03:00
update-wiki.sh Fixed input variables recieve method 2021-07-08 23:02:52 +03:00

OrlovM/Wiki-Action

Manage your wiki files in your repository. This action will push changes to the wiki repository.


Features

  • Automatically pushes changes from specified directiory to the wiki.
  • Uses author from repository's git commit.
  • Uses the commit message from repository's git commit.
  • It's easy to pull request/merge wiki files.

Usage

You should have a copy of your wiki inside your repository. Use git clone [RepositoryName].wiki.git wiki to clone a wiki repo inside your repository.

If wiki does not exist yet, create an empty page on Github wiki through Github web interface.

Example yaml config:

name: Update Wiki

on:
  push:
    paths:
      - 'wiki/**'
    branches:
      - master
jobs:
  update-wiki:
    runs-on: ubuntu-latest
    name: Update wiki
    steps:
    - uses: OrlovM/Wiki-Action@v1
      with:
        path: 'wiki'
        token: ${{ secrets.GITHUB_TOKEN }}

The possible inputs are: