Skip to content

Commit cf0ccc4

Browse files
committed
[Build] Fix mail of Eclipse Releng Bot
Use the actual email of the eclipse-releng-bot as recorded in the EF-API (https://api.eclipse.org/bots ) and that is also associated with it's Github account. Fixes - https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/issues/6227
1 parent adb5484 commit cf0ccc4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

JenkinsJobs/Builds/build.jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ spec:
133133
sshagent(['github-bot-ssh']) {
134134
sh '''
135135
set -eo pipefail
136-
git config --global user.email "eclipse-[email protected]"
137-
git config --global user.name "Eclipse Releng Bot"
136+
git config --global user.email '[email protected]'
137+
git config --global user.name 'Eclipse Releng Bot'
138138
./mb100_cloneRepos.sh $CJE_ROOT/buildproperties.shsource 2>&1 | tee $logDir/mb100_cloneRepos.sh.log
139139
'''
140140
}

JenkinsJobs/Releng/prepareNextDevCycle.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pipeline {
8383
checkout scm
8484
sh '''
8585
git submodule update --init --recursive
86-
git config --global user.email 'eclipse-[email protected]'
86+
git config --global user.email '[email protected]'
8787
git config --global user.name 'Eclipse Releng Bot'
8888
'''
8989
}

0 commit comments

Comments
 (0)