Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md example step to use github-actions[bot] user #1

Merged
merged 1 commit into from
Jan 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update README.md example step to use github-actions[bot] user
See the differences between these two 'users' here: actions/checkout#13 (comment)

As well as some investigation here: https://github.community/t/github-actions-bot-email-address/17204
ChrisCarini authored Jan 1, 2021
commit 4aa5b978be4093e88624110134715a0b13b7600a
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -34,8 +34,8 @@ jobs:
run: |
echo ${{ github.ref }}
git add .
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "CI: Automated build push" -a | exit 0
- name: Push changes
if: github.ref == 'refs/heads/master'