From e4b3caf3c8f6a1d2c10639e19921e1108a5ef964 Mon Sep 17 00:00:00 2001 From: Fulminazzo Date: Tue, 2 Apr 2024 23:30:10 +0200 Subject: [PATCH] Fixed git configuration username and email to actions --- .github/workflows/gradle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index acfb3475..286d4ad3 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -72,8 +72,8 @@ jobs: - name: Update and Push JaCoCo Badge run: |- git add .github/badges/jacoco.svg - git config user.name github-actions - git config user.email github-actions@github.com + git config user.name "GitHub Actions" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git commit -m "Update Jacoco badge" git push origin badges shell: bash \ No newline at end of file