remove travis git scripts - Fixes T6661

This commit is contained in:
Sebastian McKenzie 2015-11-18 20:41:41 -08:00
parent ac90ea20ea
commit 7ce5c4307a
3 changed files with 0 additions and 22 deletions

View File

@ -15,9 +15,6 @@ node_js:
- "0.12" - "0.12"
script: make test-ci script: make test-ci
after_success:
- ./scripts/travis/setup-git.sh
- ./scripts/travis/merge-development-with-master.sh
notifications: notifications:
slack: babeljs:5Wy4QX13KVkGy9CnU0rmvgeK slack: babeljs:5Wy4QX13KVkGy9CnU0rmvgeK

View File

@ -1,14 +0,0 @@
#!/bin/bash
set -e
echo "Branch: $TRAVIS_BRANCH"
echo "Commit: $TRAVIS_COMMIT"
if [ "$TRAVIS_BRANCH" != "development" ]; then
exit 0;
fi
git fetch origin master:master
git checkout master
git merge "$TRAVIS_COMMIT"
git push "https://${GH_TOKEN}@github.com/babel/babel"

View File

@ -1,5 +0,0 @@
#!/bin/sh
set -e
git config user.name "sebmckbot"
git config user.email "sebmckbbot@gmail.com"