Skip to content

Commit

Permalink
fix: user email and name were reversed (#193)
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 29, 2024
1 parent 7714345 commit 86ac19d
Showing 1 changed file with 2 additions and 2 deletions.
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 86ac19d

Please sign in to comment.