From 445ccb5bbd9d1780d1d9501c570e7d2a60fb8eeb Mon Sep 17 00:00:00 2001 From: Daniel Welch Date: Sun, 5 Aug 2018 15:11:52 -0500 Subject: [PATCH] Update trigger-downstream.sh to dev branch https://github.com/Koenkk/zigbee-shepherd-converters/pull/46#issuecomment-410533163 @Koenkk The problem here was that this script is triggered with pushes to `master`, not `dev`. I've updated the edge add-on version to use the `dev` branch rather than `master`. A new image is building now and should be available soon using the dev branch. --- .travis/trigger-downstream.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis/trigger-downstream.sh b/.travis/trigger-downstream.sh index 5a7e9f98..86e72037 100755 --- a/.travis/trigger-downstream.sh +++ b/.travis/trigger-downstream.sh @@ -20,11 +20,11 @@ function travis_trigger() { "https://api.travis-ci.org/repo/${org}%2F${repo}/requests" } -# Only trigger downstream if on master branch and not pull request -if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ] +# Only trigger downstream if on dev branch and not pull request +if [ "$TRAVIS_BRANCH" = "dev" -a "$TRAVIS_PULL_REQUEST" = "false" ] then echo "Triggering build of downstream projects!" travis_trigger "danielwelch" "hassio-zigbee2mqtt" "master" else - echo "Not triggering build of downstream projects, triggered by pull request or not on master branch" + echo "Not triggering build of downstream projects, triggered by pull request or not on dev branch" fi