Skip to content

Commit

Permalink
.azure-pipelines.yml: Fix exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
Margen67 committed Jun 30, 2021
1 parent c401644 commit 56f98f9
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,26 @@ 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:
include:
- '*'
paths:
exclude:
- '.github/**'
- '.github/*'
- '.github/*/*'
- '*.bat'
- '.appveyor.yml'
- 'doc/**'
- 'doc/*/*'
- 'doc/*'

pool:
vmImage: windows-latest
Expand Down

0 comments on commit 56f98f9

Please sign in to comment.