From 50294c89107d756b2a214e37bc3879a738170fb8 Mon Sep 17 00:00:00 2001 From: bikramnehra Date: Tue, 4 Aug 2026 16:40:46 -0700 Subject: [PATCH] fix(ci): point the preset validator at the renamed file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The rename PR (#4) moved default.json5 → default.json but missed the CI workflow, which is hardcoded to the old filename. Every run since has failed with `File does not exist "default.json5"` — PR #4 and PR #5 both merged past a red check because the check isn't required. Point the validator at default.json. Confirmed locally: exit 0, "Config validated successfully" (with the harmless JSON5-in-.json deprecation warn, which does not fail --strict). --- .github/workflows/renovate-config-validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate-config-validate.yml b/.github/workflows/renovate-config-validate.yml index 14ca2e5..29690ee 100644 --- a/.github/workflows/renovate-config-validate.yml +++ b/.github/workflows/renovate-config-validate.yml @@ -21,4 +21,4 @@ jobs: steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4 - name: Validate shared Renovate preset - run: npx --yes --package renovate -- renovate-config-validator --strict --no-global default.json5 + run: npx --yes --package renovate -- renovate-config-validator --strict --no-global default.json