From ea95c99b776c8eb584827936786a5de8e19befa1 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 19 Aug 2021 10:30:41 +0100 Subject: [PATCH] Update email address used for release commit Closes gh-27764 --- ci/scripts/stage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/stage.sh b/ci/scripts/stage.sh index 61318c959e33..94fc2d5006a5 100755 --- a/ci/scripts/stage.sh +++ b/ci/scripts/stage.sh @@ -30,7 +30,7 @@ echo "Staging $stageVersion (next version will be $nextVersion)" sed -i "s/version=$snapshotVersion/version=$stageVersion/" gradle.properties git config user.name "Spring Buildmaster" > /dev/null -git config user.email "buildmaster@springframework.org" > /dev/null +git config user.email "spring-buildmaster@users.noreply.github.com" > /dev/null git add gradle.properties > /dev/null git commit -m"Release v$stageVersion" > /dev/null git tag -a "v$stageVersion" -m"Release v$stageVersion" > /dev/null