From 7a301db432ea8d5440709eecf0bf3f8224a292ef Mon Sep 17 00:00:00 2001 From: Jacob Hummer Date: Sat, 4 Nov 2023 15:46:32 -0500 Subject: [PATCH] Update README.md --- reverse/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reverse/README.md b/reverse/README.md index 8f2bb3c..92e59b3 100644 --- a/reverse/README.md +++ b/reverse/README.md @@ -35,17 +35,18 @@ on: schedule: - cron: "8 14 * * *" jobs: - download-wiki: + commit-wiki: if: github.event_name != 'push' permissions: contents: write runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - run: rm -rf wiki - - uses: actions4gh/download-wiki@v1 + - uses: actions/checkout@v4 with: + repository: ${{ github.repository }}.wiki path: wiki + - run: rm -rf wiki/.git - uses: actions4gh/configure-wiki/reverse@v1 - uses: stefanzweifel/git-auto-commit-action@v5 ```