From de1fe8dce35c5d9870dfce4fc047cfeef01fa2f7 Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Tue, 24 Jan 2023 10:02:07 +0100 Subject: [PATCH] Fix Azure ignoring website files (#12129) * ignore all mdx files and all files in website * have both .md and .mdx * exclude everything but universe.json --- azure-pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0f7ea91f9..22539a763 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,13 +11,21 @@ trigger: exclude: - "website/*" - "*.md" + - "*.mdx" - ".github/workflows/*" pr: paths: exclude: - "*.md" + - "*.mdx" - "website/docs/*" - "website/src/*" + - "website/meta/*.tsx" + - "website/meta/*.mjs" + - "website/meta/languages.json" + - "website/meta/site.json" + - "website/meta/sidebars.json" + - "website/meta/type-annotations.json" - ".github/workflows/*" jobs: