From ae91aa394e2a77d5b25d053a28e6e486fe62532a Mon Sep 17 00:00:00 2001 From: Gijs de Jong Date: Mon, 16 Oct 2023 09:23:38 +0200 Subject: [PATCH] Set git config before running integration test --- .github/workflows/integration-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 3fb94a0e4c..4f813d1ded 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -23,6 +23,10 @@ jobs: # ensure we fetch ALL commits and tags! fetch-depth: '0' persist-credentials: false + - name: Set git config + run: | + git config --global user.email "cody@picnic.tech" + git config --global user.name "cody" - name: Set up JDK uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 with: