From 4b5426d3055216b5a03afa344f4c4802b31622ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Wed, 12 Apr 2023 16:48:16 +0200 Subject: [PATCH 1/2] Exclude old branches from new pipeline trigger --- azure-pipelines.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a344ec2b74..7fa26858c7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,19 @@ # Branches that trigger a build on commit trigger: -- main -- rel/* + branches: + include: + - main + - rel/* + exclude: + - rel/15* + - rel/16* + - rel/17.0 + - rel/17.1 + - rel/17.2 + - rel/17.3 + - rel/17.4 + - rel/17.5 + - rel/17.6 # Branch(es) that trigger(s) build(s) on PR pr: From 146d42876acbe32836e698706e957de85411170c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 12 Apr 2023 16:54:08 +0200 Subject: [PATCH 2/2] Update azure-pipelines.yml --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7fa26858c7..619bbf75ae 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,8 +5,8 @@ trigger: - main - rel/* exclude: - - rel/15* - - rel/16* + - rel/15.* + - rel/16.* - rel/17.0 - rel/17.1 - rel/17.2