From d72d3c63e4aab125136e0270e1c6e189e46ddd69 Mon Sep 17 00:00:00 2001 From: Cupa <5896309+Cupax3@users.noreply.github.com> Date: Wed, 11 Dec 2024 16:37:02 +0100 Subject: [PATCH] Fix: Changelogs Workflow Secrets Update (#2607) --- .github/workflows/compile_changelogs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile_changelogs.yml b/.github/workflows/compile_changelogs.yml index b0e15788158c..85f88d31a761 100644 --- a/.github/workflows/compile_changelogs.yml +++ b/.github/workflows/compile_changelogs.yml @@ -44,12 +44,12 @@ jobs: - name: Commit if: steps.value_holder.outputs.CL_ENABLED run: | - git config --local user.email "action@github.com" - git config --local user.name "Changelogs" + git config --local user.email "${{ secrets.BOT_EMAIL }}" + git config --local user.name "${{ secrets.BOT_NAME }}" git pull origin master git commit -m "Automatic changelog compile [ci skip]" -a || true - name: "Push" if: steps.value_holder.outputs.CL_ENABLED uses: ad-m/github-push-action@master with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.BOT_TOKEN }}