diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 000000000..158364743 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,27 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", ":enablePreCommit"], + "schedule": ["* 0-4 1 * *"], // 12am-5am on the first day of the month + "enabledManagers": ["github-actions", "pre-commit"], + "automerge": true, + "minimumReleaseAge": "7 days", + "packageRules": [ + { + "groupName": "GitHub Actions", + "matchManagers": ["github-actions"], + "description": "Weekly update of GitHub Actions", + "pinDigests": true + }, + { + "matchManagers": ["github-actions"], + "matchPackageNames": ["holoviz-dev/holoviz_tasks"], + "minimumReleaseAge": "0 days", + "schedule": ["* 0-4 * * *"] // 12am-5am every day + }, + { + "groupName": "pre-commit dependencies", + "matchManagers": ["pre-commit"], + "description": "Weekly update of pre-commit" + } + ] +}