-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use fbot (jenkins-ci no longuer exists)
Change-Id: I5b99dc6cd809eaad23f5b92a1650bf2775fd0d01 Signed-off-by: Cédric Ollivier <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ STREAM=${STREAM:-'nostream'} | |
RELEASE_FILES=$(git diff HEAD^1 --name-only -- "releases/$STREAM") | ||
|
||
# Configure the git user/email as we'll be pushing up changes | ||
git config --global user.name "jenkins-ci" | ||
git config --global user.name "fbot" | ||
git config --global user.email "[email protected]" | ||
|
||
# Ensure we are able to generate Commit-IDs for new patchsets | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ for release_file in $RELEASE_FILES; do | |
# If the tag doesn't exist and we're in a merge job, | ||
# everything has been verified up to this point and we | ||
# are ready to create the tag. | ||
git config --global user.name "jenkins-ci" | ||
git config --global user.name "fbot" | ||
git config --global user.email "[email protected]" | ||
echo "--> Creating $tag tag for $repo at $ref" | ||
git tag -am "$tag" $tag $ref | ||
|