oh-my-fish/tools/travis-github-pr-integration.sh

18 lines
635 B
Bash
Raw Normal View History

2015-10-01 11:40:22 +08:00
# Return if we are not in a Pull Request
2016-06-16 01:47:39 +08:00
if [[ "$TRAVIS_PULL_REQUEST" = "false" ]]; then
export OMF_REPO_URI="https://github.com/$TRAVIS_REPO_SLUG"
export OMF_REPO_BRANCH="$TRAVIS_BRANCH"
return
fi
2015-10-01 11:40:22 +08:00
GITHUB_PR_URL=https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST
2016-12-18 10:26:46 +08:00
GITHUB_PR_BODY=$(curl -s $GITHUB_PR_URL ^/dev/null)
2015-10-01 11:40:22 +08:00
if [[ $GITHUB_PR_BODY =~ \"ref\":\ *\"([a-zA-Z0-9_-]*)\" ]]; then
export OMF_REPO_BRANCH=${BASH_REMATCH[1]}
fi
if [[ $GITHUB_PR_BODY =~ \"repo\":.*\"clone_url\":\ *\"(https://github\.com/[a-zA-Z0-9_-]*/[a-zA-Z0-9_-]*\.git).*\"base\" ]]; then
export OMF_REPO_URI=${BASH_REMATCH[1]}
fi