From 4099c2e5f1488d48636f676e2fee2bba5fb8ef76 Mon Sep 17 00:00:00 2001 From: aRustyDev <36318507+aRustyDev@users.noreply.github.com> Date: Fri, 5 Dec 2025 15:38:55 -0500 Subject: [PATCH] ci(wiki): Add GitHub Wiki Action workflow --- .github/workflows/wiki-updates.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/wiki-updates.yml diff --git a/.github/workflows/wiki-updates.yml b/.github/workflows/wiki-updates.yml new file mode 100644 index 0000000..323b248 --- /dev/null +++ b/.github/workflows/wiki-updates.yml @@ -0,0 +1,29 @@ +name: Publish Wiki +on: + push: + branches: [main] + paths: + - wiki/** + - .github/workflows/wiki-updates.yml + workflow_dispatch: + +concurrency: + group: publish-wiki + cancel-in-progress: true + +permissions: + contents: write + +jobs: + publish-wiki: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Publish to GitHub Wiki + uses: Andrew-Chen-Wang/github-wiki-action@v4 + with: + path: wiki/ + commit-message: "wiki: update from ${{ github.sha }}" + preprocess: true