From b16c063295910abb6f5e4939b2838bdd06819f57 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Fri, 14 Nov 2025 01:33:40 +0100 Subject: [PATCH] not any subdirectory website renovate --- .github/renovate/kinds/astro.json5 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/renovate/kinds/astro.json5 b/.github/renovate/kinds/astro.json5 index 21844bdd1de..d84a10dd546 100644 --- a/.github/renovate/kinds/astro.json5 +++ b/.github/renovate/kinds/astro.json5 @@ -2,13 +2,13 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "npm": { "fileMatch": [ - "(^|/)astro\\.config\\.(mjs|js|ts)$", // Matches Astro config files in /website and any subdirectory - "(^|/)package\\.json$", // Matches package.json files in /website and any subdirectory - "(^|/)package-lock\\.json$" // Matches package.json files in /website and any subdirectory + "^astro\\.config\\.(mjs|js|ts)$", // Only matches astro.config.* in the root + "^package\\.json$", // Only matches package.json in the root + "^package-lock\\.json$" // Only matches package-lock.json in the root ], "branchPrefix": "renovate/astro-", - "enabled": true, // Enable updates for website dependencies - "updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], // Allow updates for all version types + "enabled": true, + "updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], "semanticCommitScope": "website" - }, + } }