From fca242b34e0bdb8e6a290754b43b55f0365eef6c Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Fri, 15 Oct 2021 17:32:00 +0200 Subject: [PATCH] Avoid initial wildcards in PR CI filter (#9477) * Avoid initial wildcards in PR CI filter * Adjust wildcard patterns --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 245407189..300ae2372 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,17 +9,17 @@ trigger: - "v2.spacy.io" paths: exclude: - - "website/*" + - "website/**" - "*.md" pr: paths: include: - - "*.cfg" - - "*.py" - - "*.toml" - - "*.yml" + - "setup.cfg" + - "setup.py" + - "pyproject.toml" + - "azure-pipelines.yml" - ".github/azure-steps.yml" - - "spacy/*" + - "spacy/**" - "website/meta/universe.json" jobs: