From ea91ab406311cce7d81acf14b2bcc939ead7e0e3 Mon Sep 17 00:00:00 2001 From: Jens Papenhagen Date: Tue, 30 Jun 2026 20:46:04 +0200 Subject: [PATCH] Update update-verification.yml --- .github/workflows/update-verification.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update-verification.yml b/.github/workflows/update-verification.yml index 4cda9f4..f17d83e 100644 --- a/.github/workflows/update-verification.yml +++ b/.github/workflows/update-verification.yml @@ -33,9 +33,11 @@ jobs: run: ./gradlew --write-verification-metadata sha256 build -x test - name: Commit updated verification metadata - run: | - git diff --quiet gradle/verification-metadata.xml || { - git add gradle/verification-metadata.xml - git commit -m "auto: update dependency verification metadata [skip ci]" - git push - } + run: | + git diff --quiet gradle/verification-metadata.xml || { + git config user.email "github-actions[bot]@users.noreply.github.com" + git config user.name "github-actions[bot]" + git add gradle/verification-metadata.xml + git commit -m "auto: update dependency verification metadata [skip ci]" + git push + }