From c23d5adbc4a9917340022e433f5803554380f2a8 Mon Sep 17 00:00:00 2001 From: Ashley Graves Date: Sat, 27 Jul 2024 14:34:31 +0200 Subject: [PATCH] test --- .forgejo/workflows/update-wiki.yaml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/update-wiki.yaml b/.forgejo/workflows/update-wiki.yaml index eca0284..d637c35 100644 --- a/.forgejo/workflows/update-wiki.yaml +++ b/.forgejo/workflows/update-wiki.yaml @@ -3,14 +3,24 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: "Clone Modpack" + uses: actions/checkout@v3 with: - repository: "root/posspack.git" + repository: "root/posspack" path: "pack" - - uses: actions/checkout@v3 + - name: "Clone Wiki" + uses: actions/checkout@v3 with: - repository: "root/posspack.wiki.git" + repository: "root/posspack.wiki" path: ".wiki" - - run: python .forgejo/scripts/update-wiki.py + - name: "Update Modlist" + run: python .forgejo/scripts/update-wiki.py + + - name: "Commit Changes" + run: | + git config --global user.name 'Your Name' + git config --global user.email 'your-username@users.noreply.github.com' + git commit -am "Automated report" + git push