Skip to content

Commit ca537d9

Browse files
authored
fix(ci): Set git config in prerelease.yml (#15236)
1 parent 5663aa0 commit ca537d9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/prerelease.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ jobs:
101101
with:
102102
name: firebase-ios-sdk
103103
path: ${{ env.local_sdk_repo_dir }}
104+
# Addresses flaky pushes due to missing git config on runner.
105+
- name: Set git config
106+
run: |
107+
git config --global user.email "[email protected]"
108+
git config --global user.name "google-oss-bot"
104109
- name: Update SpecsTesting repo
105110
run: |
106111
cd scripts/create_spec_repo/

0 commit comments

Comments
 (0)