From edb29a59833e2cabf713cdec243bac759af1a863 Mon Sep 17 00:00:00 2001 From: Emanuele Aina <emanuele.aina@collabora.com> Date: Thu, 14 Jan 2021 00:25:42 +0100 Subject: [PATCH] update_test_binaries: Update committer name pointing to GitLab bot Use committer name/email that match the one of the actual GitLab user configured to push commits from the CI/CD pipeline. Signed-off-by: Emanuele Aina <emanuele.aina@collabora.com> --- update_test_binaries.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update_test_binaries.sh b/update_test_binaries.sh index 9a55123..ce9d3d7 100755 --- a/update_test_binaries.sh +++ b/update_test_binaries.sh @@ -203,8 +203,8 @@ commit_all () { local CHANGES=$(${GIT} diff-index --name-only HEAD --) if [ -n "${CHANGES}" ]; then - ${GIT} config --local "user.email" "jenkins@apertis.org" - ${GIT} config --local "user.name" "Apertis jenkins" + ${GIT} config --local "user.email" "testbot@apertis.org" + ${GIT} config --local "user.name" "Apertis Test Bot" ${GIT} commit -s -F ../${TEST}-commit-msg.txt -- ${ARCHS} if [ -z "$dry_run" ]; then ${GIT} push origin HEAD:${BRANCH} -- GitLab