We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5f8c95 commit e40ff36Copy full SHA for e40ff36
scripts/ci/presubmit-queue-setup.sh
@@ -11,7 +11,8 @@ if [ "$TRAVIS_REPO_SLUG" = "angular/angular" ]; then
11
git config credential.helper "store --file=.git/credentials"
12
# travis encrypt GITHUB_TOKEN_ANGULAR=??? --repo=angular/angular
13
echo "https://${GITHUB_TOKEN_ANGULAR}:@github.com" > .git/credentials
14
- git config user.name "travis@travis-ci.org"
+ git config user.name "`git --no-pager show -s --format='%cN' HEAD`"
15
+ git config user.email "`git --no-pager show -s --format='%cE' HEAD`"
16
17
git remote add upstream https://github.com/angular/angular.git
18
git fetch upstream master
scripts/ci/presubmit-queue-success.sh
@@ -41,4 +41,3 @@ EOM
41
fi
42
43
44
-`
0 commit comments