travis: do not trigger trezor-core if not master

pull/25/head
matejcik 6 years ago
parent cc7c8ccb59
commit f9c20f8d2f

@ -12,6 +12,11 @@ if [ "$TRAVIS_REPO_SLUG" != "$SOURCE" ]; then
exit 0;
fi
if [ "$TRAVIS_BRANCH" != "master" ]; then
echo "not triggering from non-master branch"
exit 0;
fi
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
echo "not triggering from pull requests"
exit 0;

Loading…
Cancel
Save