From e0de998d3ef9ba72651781cd222cd6f74c0a4bec Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 11 Oct 2025 11:59:15 +0200 Subject: [PATCH] ci: add daily schedule for Renovate pre-commit hooks Add a new package rule to schedule updates for the `renovatebot/pre-commit-hooks` package daily from 0:00 to 1:59. This ensures that updates are regularly applied, improving dependency management and code quality in the project. --- renovate.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/renovate.json b/renovate.json index 66e83f0..3831380 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,16 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "local>opzkit/renovate-config" + ], + "packageRules": [ + { + "description": "Schedule Renovate pre-commit hook updates daily (0:00-1:59)", + "matchPackageNames": [ + "renovatebot/pre-commit-hooks" + ], + "schedule": [ + "* 0-1 * * *" + ] + } ] }