Skip to content

Commit 134a85b

Browse files
committed
adds Git user email and name to CI
PR chromium#475 uses Git for package management, so we need to give the CI some sort of identity. The email is a fake email, just to satisfy using Git.
1 parent ad5b35d commit 134a85b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,11 @@ jobs:
209209
)
210210
endif()
211211
212+
- name: Set up user details in Git
213+
run: |
214+
git config --global user.email "ci.subspace.workflows@github.com" # This email doesn't exist
215+
git config --global user.name "Subspace GitHub CI"
216+
212217
- name: Configure
213218
shell: cmake -P {0}
214219
run: |

0 commit comments

Comments
 (0)