From f7498c2bb298c85163871d5bedb64b15debd93ed Mon Sep 17 00:00:00 2001 From: Ulrich Huber Date: Wed, 12 Jun 2019 22:42:15 -0400 Subject: [PATCH] Trigger Pipeline on all branches except stable --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index db3ff96c..7a816f6b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,10 +1,10 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - trigger: -- master + branches: + include: + - '*' + exclude: + - stable + stages: - stage: 'Build_Test_Stage'