Skip to content

Commit 568b60f

Browse files
committed
ci: fix git user
1 parent b904567 commit 568b60f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/bump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
run: brew install-bundler-gems
3939

4040
- name: Configure Git User
41-
uses: Homebrew/actions/git-user-config@master
42-
with:
43-
username: ${{ github.event_name == 'schedule' && 'github-actions[bot]' || github.actor }}
41+
run: |
42+
git config --global user.name "github-actions[bot]"
43+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
4444
4545
- name: Bump Formulae
4646
env:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
run: brew install-bundler-gems
4242

4343
- name: Configure Git User
44-
run:
45-
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
44+
run: |
4645
git config --global user.name "github-actions[bot]"
46+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
4747
4848
- name: Checkout PR Branch
4949
working-directory: ${{ steps.set-up-homebrew.outputs.repository-path }}

0 commit comments

Comments
 (0)