diff --git a/.forgejo/workflows/update-wiki.yaml b/.forgejo/workflows/update-wiki.yaml index d637c35..e646227 100644 --- a/.forgejo/workflows/update-wiki.yaml +++ b/.forgejo/workflows/update-wiki.yaml @@ -3,24 +3,25 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: "Clone Modpack" + - name: "Clone modpack" uses: actions/checkout@v3 with: repository: "root/posspack" path: "pack" - - name: "Clone Wiki" + - name: "Clone wiki" uses: actions/checkout@v3 with: repository: "root/posspack.wiki" path: ".wiki" + branch: "main" - - name: "Update Modlist" + - name: "Update modlist" run: python .forgejo/scripts/update-wiki.py - - name: "Commit Changes" + - name: "Commit changes" run: | - git config --global user.name 'Your Name' + git config --global user.name 'PossPack Wiki Updater' git config --global user.email 'your-username@users.noreply.github.com' git commit -am "Automated report" git push