diff options
author | nodiscc <nodiscc@gmail.com> | 2020-09-05 13:01:11 +0000 |
---|---|---|
committer | nodiscc <nodiscc@gmail.com> | 2020-09-05 13:01:11 +0000 |
commit | dd18570d0ea04dbe489f9ad22eb2d9c5fd05ccc3 (patch) | |
tree | 6c5cdc689ac17741f91146d0f2ee3fee2199911d | |
parent | Fix regex for mainlink. (diff) | |
download | awesome-selfhosted-dd18570d0ea04dbe489f9ad22eb2d9c5fd05ccc3.tar.gz awesome-selfhosted-dd18570d0ea04dbe489f9ad22eb2d9c5fd05ccc3.zip |
travis.yml: only run full awesome_bot tests on monthly-check branch
fixes https://github.com/awesome-selfhosted/awesome-selfhosted/issues/2209
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 828806b7..4ba0cd9c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,14 +15,8 @@ before_script: script: - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then git diff origin/master -U0 README.md | grep -Pos "(?<=^\+).*" >> temp.md; fi || (exit 0)' - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then node tests/test.js -r README.md -d temp.md; else node tests/test.js -r README.md; fi' - - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then if [ -f temp.md ]; then awesome_bot temp.md --allow-redirect --skip-save-results --allow 202 --white-list airsonic.github.io/docs/apps; else (exit 0); fi else awesome_bot *.md --allow-redirect --skip-save-results --allow 202 --white-list airsonic.github.io/docs/apps; fi' + - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then awesome_bot temp.md --allow-redirect --skip-save-results --allow 202 --white-list airsonic.github.io/docs/apps; else (exit 0); fi' + - 'if [ "$TRAVIS_BRANCH" == "monthly-check" ]; then awesome_bot *.md --allow-redirect --skip-save-results --allow 202 --white-list airsonic.github.io/docs/apps; fi' - notifications: email: false - -branches: - only: - - master - - travis_test - |