From 3b319cac157e4a925258039403c43b2ab397daf9 Mon Sep 17 00:00:00 2001 From: Simon Owen Date: Thu, 9 Sep 2021 23:39:28 +0100 Subject: [PATCH] Add branch build exceptions for GitHub Actions We don't want Travis or AppVeyor builds triggered while we're experimenting with builds using GitHub Actions. --- .appveyor.yml | 1 + .travis.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 2e349d46..92b1ca7a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,6 +3,7 @@ version: "{build}" branches: except: - travis + - actions image: - Visual Studio 2017 diff --git a/.travis.yml b/.travis.yml index 1b934808..e225dfe7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ branches: except: - appveyor + - actions language: cpp