From 9509ef170646b8cc9986ac492acba8117c8e61f4 Mon Sep 17 00:00:00 2001 From: Nutomic Date: Fri, 11 Oct 2024 09:30:26 +0200 Subject: [PATCH] Update renovate config (#5109) * Update renovate config * ignroe rust updates, run on first day of month * fix --- renovate.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index b3eaa8e97..03619c85f 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,19 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], - "schedule": ["every weekend"], - "automerge": true + "schedule": ["before 4am on the first day of the month"], + "automerge": true, + "rebaseWhen": "conflicted", + "packageRules": [ + { + "groupName": "docker", + "matchDatasources": ["docker"] + }, + { + "groupName": "npm", + "matchDatasources": ["npm"] + } + ], + "ignoreDeps": ["lemmy-js-client", "pgautoupgrade/pgautoupgrade"], + "ignorePaths": ["(^|/)Cargo\\.toml$"] }