From a34bc1b0b6634c62c6517283ac3c26e382a3f6f5 Mon Sep 17 00:00:00 2001 From: Jan Galek Date: Sun, 5 Jan 2025 00:47:34 +0100 Subject: [PATCH] [Add] update github wiki action --- .github/workflows/wiki.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/wiki.yml diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml new file mode 100644 index 0000000..f3f6bb4 --- /dev/null +++ b/.github/workflows/wiki.yml @@ -0,0 +1,23 @@ +name: Update Github wiki + +on: + push: + branches: + - main + - master + +permissions: + contents: write + +jobs: + update-wiki: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Update wiki + uses: gouef/github-wiki-sync-repository-action@main + with: + dir: "docs/" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file