From 98d15185c3d81025e2b928b298d6073bfbf42b60 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Mon, 25 Mar 2024 16:42:28 +0000 Subject: [PATCH] ci: disable lock file maintenance --- .github/renovate.json | 83 +++++++++++++++++++++++++++++-------------- 1 file changed, 56 insertions(+), 27 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index d232649cbe15..43a0e5d8ecf3 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,29 +1,58 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "timezone": "Europe/Gibraltar", - "schedule": ["before 9am on monday"], - "extends": ["config:recommended", ":dependencyDashboard"], - "assignees": ["@biomejs/maintainers", "@biomejs/core-contributors"], - "packageRules": [ - { - "groupName": "github-actions", - "matchManagers": ["github-actions"] - }, - { - "groupName": "Rust crates", - "matchManagers": ["cargo"], - "matchFileNames": ["crates/**", "xtask/**"], - "ignoreDeps": ["syn", "quote"] - }, - { - "groupName": "Website", - "matchFileNames": ["website/package.json"], - "matchManagers": ["npm"] - }, - { - "groupName": "@biomejs packages", - "matchFileNames": ["packages/**"], - "matchManagers": ["npm"] - } - ] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "timezone": "Europe/Gibraltar", + "schedule": [ + "before 9am on monday" + ], + "extends": [ + "config:recommended", + ":dependencyDashboard" + ], + "lockFileMaintenance": { + "enabled": false + }, + "assignees": [ + "@biomejs/maintainers", + "@biomejs/core-contributors" + ], + "packageRules": [ + { + "groupName": "github-actions", + "matchManagers": [ + "github-actions" + ] + }, + { + "groupName": "Rust crates", + "matchManagers": [ + "cargo" + ], + "matchFileNames": [ + "crates/**", + "xtask/**" + ], + "ignoreDeps": [ + "syn", + "quote" + ] + }, + { + "groupName": "Website", + "matchFileNames": [ + "website/package.json" + ], + "matchManagers": [ + "npm" + ] + }, + { + "groupName": "@biomejs packages", + "matchFileNames": [ + "packages/**" + ], + "matchManagers": [ + "npm" + ] + } + ] }