Set config prior to git review -s.

Requirements proposal jobs need to set git configs for each git repo it
is proposing to. This is necessary because it shouldn't set the git
config globally for the Jenkins user on the slaves.

Change-Id: Id69ba218065022f69d2dd9d140825699d78604e3
This commit is contained in:
Clark Boylan 2014-04-17 16:17:09 -07:00
parent 8ea7c11926
commit e0eb6f9130

View File

@ -62,6 +62,11 @@ EOF
# make sure the project even has this branch
if git branch -a | grep -q "^ remotes/origin/$BRANCH$" ; then
git checkout -B ${BRANCH} -t origin/${BRANCH}
# Need to set the git config in each repo as we shouldn't
# set it globally for the Jenkins user on the slaves.
git config user.name "OpenStack Proposal Bot"
git config user.email "openstack-infra@lists.openstack.org"
git config gitreview.username "proposal-bot"
git review -s
popd