From 6376f0ab367f1ac17ce75b5410e68090b03b9d9b Mon Sep 17 00:00:00 2001 From: Marc Philipp Date: Wed, 11 Dec 2024 09:30:33 +0100 Subject: [PATCH] Configure Git username and email (cherry picked from commit dab4e51058fd9083bffe5e6352b7264236fc2a2f) --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b00b1e6cf74a..357ed0d1cf21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -117,6 +117,11 @@ jobs: arguments: | prepareDocsForUploadToGhPages \ -Dscan.tag.Documentation + - name: Configure Git + shell: bash + run: | + git config --global user.name "JUnit Team" + git config --global user.email "team@junit.org" - name: Upload Documentation if: github.event_name == 'push' && github.repository == 'junit-team/junit5' && github.ref == 'refs/heads/main' uses: ./.github/actions/run-gradle