Skip to content

Commit

Permalink
fix: user email and name were reversed
Browse files Browse the repository at this point in the history
The email was set to the user.name and the name was set to the user.email.

Thanks for the blogpost!
  • Loading branch information
muhlemmer committed Mar 28, 2024
1 parent 7714345 commit b036ad0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ jobs:
- name: perform merge
run: |
git config --global user.email "${GITHUB_ACTOR}"
git config --global user.name "${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config --global user.name "${GITHUB_ACTOR}"
git status
git pull
git checkout "$DEFAULT_BRANCH"
Expand Down

0 comments on commit b036ad0

Please sign in to comment.