From 746591430f30a838bd6791214dc7517457013be4 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 12 Feb 2019 08:22:15 +0100 Subject: [PATCH] [Fix] Don't run azure pipelines for PRs to master Apply the previous commit to the right file. --- .appveyor.yml | 5 ----- azure-pipelines.yml | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index bccd0f58..23538d63 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,11 +4,6 @@ branches: - trying - /post-.*/ -pr: - branches: - exclude: - - master - build: false test_script: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d37b53d2..7c190cce 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,6 +11,11 @@ trigger: # Build post braches - post-* +pr: + branches: + exclude: + - master + pool: vmImage: ubuntu-16.04