Skip to content

Commit 8a6feff

Browse files
committed
Merge pull request #442 from dhermes/fix-user-and-email
Using both user name and email for gh-pages commits.
2 parents 932cc07 + 65abbf6 commit 8a6feff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/update_docs.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ git status
3131
# H/T: https://github.com/dhermes
3232
if [[ -n "$(git status --porcelain)" ]]; then
3333
# Commit to gh-pages branch to apply changes.
34-
git config user.name "selfiebot"
34+
git config --global user.email "[email protected]"
35+
git config --global user.name "travis-ci"
3536
git commit -m "Update docs after merge to master."
3637
git push \
3738
"https://${GH_OAUTH_TOKEN}@github.com/${GH_OWNER}/${GH_PROJECT_NAME}" \

0 commit comments

Comments
 (0)