From c000b5abc3225451eb7231ca86929a3b1d1c3604 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 31 Jan 2022 13:47:49 +0100 Subject: [PATCH] build: ignore integration test sub-projects within renovate Sub-projects do not necessarily have valid `package.json` files because they might reference local-built packages through `file:<..>` Renovate does not install dependencies on the top-level workspace first, neither does it perform a build. We want to ignore such nested sub-projects as these should be updated manually, ideally even kept up-to-date by pointing from the sub-workspace to the root workspace (using e.g. `file:/../../node_modules/rxjs`). --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/renovate.json b/renovate.json index 8986f8b88228..9047f0d112ac 100644 --- a/renovate.json +++ b/renovate.json @@ -14,6 +14,9 @@ "semanticCommitScope": "", "semanticCommitType": "build", "separateMajorMinor": false, + "ignorePaths": [ + "integration/**" + ], "packageRules": [ { "matchPackagePatterns": ["*"],