Skip to content

Commit

Permalink
add explainer for user.name & user.email values
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored May 16, 2023
1 parent 85a9b50 commit d6808bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ git add -Av
# This sets the default author & committer for the Git commit that we make. If
# you want to change this, you can! You can set the $GIT_AUTHOR_* and
# $GIT_COMMITTER_* env vars in your workflow and they should pass down to this
# 'git commit' operation.
# 'git commit' operation. These values are from one of the popular Git commit
# actions: stefanzweifel/git-auto-commit-action [1]
#
# [1]: https://github.com/stefanzweifel/git-auto-commit-action/blob/master/action.yml#L35-L42
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
# Allowing an empty commit is way easier than detecting empty commits! This also
Expand Down

0 comments on commit d6808bd

Please sign in to comment.