Skip to content

Commit c283198

Browse files
committed
fix: correct git config user.user to user.name in test workflow
1 parent 9661c7a commit c283198

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
fi
120120
- name: Set pseudo git user
121121
run: |
122-
git config --global user.user "runner"
122+
git config --global user.name "runner"
123123
git config --global user.email "runner@localhost"
124124
- uses: rcmdnk/python-action@v3
125125
with:
@@ -159,7 +159,7 @@ jobs:
159159
steps:
160160
- name: Set pseudo git user
161161
run: |
162-
git config --global user.user "runner"
162+
git config --global user.name "runner"
163163
git config --global user.email "runner@localhost"
164164
- uses: rcmdnk/python-action@v3
165165
with:

0 commit comments

Comments
 (0)