Skip to content

Commit

Permalink
Fix: Changelogs Workflow Secrets Update (#2607)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cupax3 authored Dec 11, 2024
1 parent 5a40b07 commit d72d3c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compile_changelogs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
- name: Commit
if: steps.value_holder.outputs.CL_ENABLED
run: |
git config --local user.email "[email protected]"
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 }}

0 comments on commit d72d3c6

Please sign in to comment.