From 7460dc2aba7e0b6f4bf945e48ce7ef6f6b741943 Mon Sep 17 00:00:00 2001 From: John Abrahams Date: Mon, 27 Feb 2023 14:27:39 -0500 Subject: [PATCH] Add a git user --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76b59362..929f33d7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,6 +75,11 @@ jobs: - name: Checkout latest code uses: actions/checkout@v3 + - name: Config git user + run: | + git config user.name ${{ github.actor }} + git config user.email "${{ github.actor }}@users.noreply.github.com" + - name: Setup Java & Maven uses: actions/setup-java@v3 with: