From 1df3eda66f816fa847898903ad34f246c6d0f0d5 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 4 Aug 2021 21:23:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Switches=20docs-wiki=20sync=20to?= =?UTF-8?q?=20use=20different=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/wiki-sync.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/wiki-sync.yml b/.github/workflows/wiki-sync.yml index 85a2712e..e6a56e79 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -1,3 +1,4 @@ +# Uses the contents of the ./docs directory for Dashy's GH Wiki page name: Wiki Sync on: workflow_dispatch: # Manual dispatch @@ -9,11 +10,11 @@ jobs: steps: - uses: actions/checkout@master - name: Sync Wiki - uses: joeizzard/action-wiki-sync@master + uses: cmbrose/github-docs-to-wiki@v0.24 with: - username: example - access_token: ${{ secrets.GITHUB_TOKEN }} - wiki_folder: ./docs - commit_username: 'liss-bot' - commit_email: 'liss-bot@d0h.co' - commit_message: '📕 Chore: Sync Wiki' + githubToken: ${{ secrets.GITHUB_TOKEN }} + defaultBranch: master + rootDocsFolder: ./docs + convertRootReadmeToHomePage: true + useHeaderForWikiName: true + customCommitMessageFormat: ':gem: Chore: Sync Docs to GH Wiki'