From df6f14ee6be0c0c43b293b9e69df9c43b559c7ea Mon Sep 17 00:00:00 2001 From: WebStreamr <210764791+webstreamr@users.noreply.github.com> Date: Mon, 12 May 2025 07:00:17 +0000 Subject: [PATCH] chore(renovate): limit updates of often-releasing packages a bit --- renovate.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/renovate.json b/renovate.json index 97a9143..2fee19f 100644 --- a/renovate.json +++ b/renovate.json @@ -16,6 +16,18 @@ "description": "Automerge non-major updates", "matchUpdateTypes": ["minor", "patch", "digest", "lockFileMaintenance"], "automerge": true + }, + { + "description": "Update types once per week", + "matchDatasources": ["npm"], + "matchPackageNames": ["/^@types/"], + "extends": ["schedule:weekly"] + }, + { + "description": "Update user-agents once per month", + "matchDatasources": ["npm"], + "matchPackageNames": ["/^user-agents$/"], + "extends": ["schedule:monthly"] } ] }