From 7ddf5153b8f855f1cf007574efccfad5fc1f8495 Mon Sep 17 00:00:00 2001 From: Christian Haser <32584944+CryZo@users.noreply.github.com> Date: Sun, 31 Mar 2024 13:11:41 +0200 Subject: [PATCH] Implemented commit signing for docs action --- .github/workflows/docs.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9300cc5..3e6c2cd 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,9 +23,9 @@ jobs: run: bash ${GITHUB_WORKSPACE}/scripts/generate-readme.sh - name: Commit & Push - uses: Andro999b/push@v1.3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: main - force: true - message: 'Overwritten by Github Actions' + shell: bash + run: | + git config --global user.email "github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + git commit --allow-empty --message="Overwritten by Github Actions" + git push \ No newline at end of file