From 4f2062927be0b2554d4027d2af2250bfeb900c80 Mon Sep 17 00:00:00 2001 From: Sam Yates <halfflat@gmail.com> Date: Thu, 4 Jun 2020 14:39:43 +0200 Subject: [PATCH] Exclude branches matching /\.tmp$/ from Travis CI. (#1056) Fix for #1055 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4d992ef9..a604df64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,9 @@ # Apple Clang 1100.0.33.16 ####################################################### +# Ignore bors testing branches. +if: NOT branch =~ \.tmp$ + language: cpp sudo: false -- GitLab