Skip to content

Commit

Permalink
build: GIT_COMMITTER_* env vars are ignored by git
Browse files Browse the repository at this point in the history
  • Loading branch information
seandstewart committed Sep 4, 2024
1 parent 965e8f6 commit b3cec13
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
runner: ${{ matrix.os }}
- name: Setup Git Credentials
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Update the Changelog
run: |
make changelog
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
runner: ${{ matrix.os }}
- name: Setup Git Credentials
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Tag New Version
run: make release-version rule=${{ inputs.level }}
- name: Push New Version
Expand Down

0 comments on commit b3cec13

Please sign in to comment.