Skip to content

Commit

Permalink
workflows: fix code style workflows user name (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
RuffaloLavoisier authored Oct 9, 2024
1 parent e140c3f commit 22e3bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/astyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- name: Push changes
if: steps.git-check.outputs.modified == 'true'
run: |
git config --global user.email 'action@github.com'
git config --global user.name 'GitHub Action'
git config --global user.email $(jq -r '.pusher.email' $GITHUB_EVENT_PATH)
git config --global user.name $(jq -r '.pusher.name' $GITHUB_EVENT_PATH)
git commit -am 'Applied formatting'
- name: Push changes
uses: ad-m/github-push-action@master
Expand Down

0 comments on commit 22e3bfa

Please sign in to comment.