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
This commit is contained in:
Sofie Van Landeghem 2023-01-24 10:02:07 +01:00 committed by GitHub
parent e9048fd4a1
commit de1fe8dce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,13 +11,21 @@ trigger:
exclude: exclude:
- "website/*" - "website/*"
- "*.md" - "*.md"
- "*.mdx"
- ".github/workflows/*" - ".github/workflows/*"
pr: pr:
paths: paths:
exclude: exclude:
- "*.md" - "*.md"
- "*.mdx"
- "website/docs/*" - "website/docs/*"
- "website/src/*" - "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/*" - ".github/workflows/*"
jobs: jobs: