Skip to content

Commit c687a55

Browse files
committed
fix: Updates release.yml with git config lines for bot.
1 parent 9caca97 commit c687a55

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,14 @@ jobs:
2828
env:
2929
GOOGLE_MAPS_JS_SAMPLES_KEY: "${{ secrets.GOOGLE_MAPS_JS_SAMPLES_KEY }}"
3030
steps:
31-
- uses: actions/checkout@v3
31+
- name: Checkout code
32+
uses: actions/checkout@v3
3233
with:
3334
token: ${{ secrets.GITHUB_TOKEN }}
35+
- name: Set Git Identity
36+
run: |
37+
git config user.name 'github-actions[bot]'
38+
git config user.email 'github-actions[bot]@users.noreply.github.com'
3439
- uses: actions/cache@v3
3540
with:
3641
path: ~/.npm

0 commit comments

Comments
 (0)