Skip to content

Commit

Permalink
Use 'fake' git committer instead of GitHub bot
Browse files Browse the repository at this point in the history
This should hopefully avoid any confusion about what the committer and
commits signify.
  • Loading branch information
ekilmer committed Mar 4, 2024
1 parent df3c00f commit d782c24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
- name: install cookiecutter
run: python -m pip install cookiecutter

# See this PR for more details https://github.com/actions/checkout/pull/1184#issue-1595060720
- name: setup GitHub bot git committer
# we need the git config setup here to make sure the subsequent git commit in each test works
- name: setup fake git committer
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git config --global user.email "fake@example.com"
git config --global user.name "fake"
- name: run template (default)
run: |
Expand Down

0 comments on commit d782c24

Please sign in to comment.