From ba2b91c511e2134fee23e088dd70ebb595457224 Mon Sep 17 00:00:00 2001 From: Simeon Cheeseman <1085899+SimeonC@users.noreply.github.com> Date: Fri, 26 Jan 2024 16:23:00 +0900 Subject: [PATCH] ci: fix occasional error with author identity unknown --- .github/setup/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/setup/action.yml b/.github/setup/action.yml index 1f29a305..c6d3468f 100644 --- a/.github/setup/action.yml +++ b/.github/setup/action.yml @@ -16,6 +16,12 @@ runs: # checkout@v2 adds a header that makes branch protection report errors ): run: git config --local --unset http.https://github.com/.extraheader + - name: Set git author config + shell: bash + run: | + git config --global user.email "dev@tablecheck.com" + git config --global user.name "TableCheck Inc." + - name: Read .nvmrc shell: bash id: nvm