From d3177a9684c33f9c4d8fc794b32e84a9f6a64513 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Sun, 18 Apr 2021 14:03:20 +0200 Subject: [PATCH] .travis.yml: always run pipeline on master, regardless of whether the job was triggered via cron or manually - automatic builds on push are still disabled from https://travis-ci.org/github/awesome-selfhosted/awesome-selfhosted/settings --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f5c5e699..6e2651c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ before_install: script: - 'echo "DEBUG: $TRAVIS_BRANCH - $TRAVIS_EVENT_TYPE - $TRAVIS_PULL_REQUEST"' - - 'if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "cron" ]]; then make check_all; fi' + - 'if [[ "$TRAVIS_BRANCH" == "master" ]]; then make check_all; fi' - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then make check_pr; fi' notifications: