From 56f98f956133c13f442d390b5be611731a0ac6a3 Mon Sep 17 00:00:00 2001 From: Margen67 Date: Tue, 22 Jun 2021 23:46:57 -1000 Subject: [PATCH] .azure-pipelines.yml: Fix exclusions --- .azure-pipelines.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index fb1ff7537c..1e1071b0b9 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -3,11 +3,13 @@ trigger: include: - '*' paths: - exclude: - - '.github/**' + exclude: # Azure Pipelines doesn't support recursive wildcards, see + - '.github/*' # https://developercommunity.visualstudio.com/t/support-wildcards-in-trigger-path-filters-1/366363 + - '.github/*/*' - '*.bat' - '.appveyor.yml' - - 'doc/**' + - 'doc/*/*' + - 'doc/*' pr: branches: @@ -15,10 +17,12 @@ pr: - '*' paths: exclude: - - '.github/**' + - '.github/*' + - '.github/*/*' - '*.bat' - '.appveyor.yml' - - 'doc/**' + - 'doc/*/*' + - 'doc/*' pool: vmImage: windows-latest