From b3118cddf06f13de9dea35bca64f1a5681ee56e2 Mon Sep 17 00:00:00 2001 From: Sam Sneddon Date: Fri, 18 Oct 2024 13:44:26 -0700 Subject: [PATCH] squash! Add schema validation for the various files in .github We can't pass allowUnusedKeywords: true to the Action, so we need to just use the entire lax mode, alas. If we don't, we get: > Error: Keyword not supported: "x-intellij-enum-metadata" at https://json.schemastore.org/dependabot-2.0.json# --- .github/workflows/github-schema-validation.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/github-schema-validation.yml b/.github/workflows/github-schema-validation.yml index ba8650d4bc6a3b3..3dae7383fa83475 100644 --- a/.github/workflows/github-schema-validation.yml +++ b/.github/workflows/github-schema-validation.yml @@ -30,6 +30,7 @@ jobs: with: file: '.github/dependabot.yml' schema: 'https://json.schemastore.org/dependabot-2.0.json' + mode: 'lax' - name: '.github/actions' if: ${{ hashFiles('.github/actions/*/action.yml') != '' }}