From 90e371e38e71f06b9053c503037c5484f7d14a38 Mon Sep 17 00:00:00 2001 From: willporter-workos Date: Tue, 26 May 2026 16:00:23 -0400 Subject: [PATCH 1/2] fix(renovate): explicitly enable minor and patch updates The shared preset now disables minor updates by default. Add enabled: true to the minor/patch rule so this repo continues to receive minor PRs. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1c7efc45..bde0e8a4 100644 --- a/renovate.json +++ b/renovate.json @@ -16,7 +16,8 @@ "patch" ], "automerge": true, - "groupName": "minor and patch updates" + "groupName": "minor and patch updates", + "enabled": true }, { "matchUpdateTypes": [ From 934bb962dfcb9ec44b61d242d03aaa451a433122 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Wed, 27 May 2026 16:23:23 -0400 Subject: [PATCH 2/2] Update renovate.json --- renovate.json | 56 +-------------------------------------------------- 1 file changed, 1 insertion(+), 55 deletions(-) diff --git a/renovate.json b/renovate.json index bde0e8a4..d702521b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,60 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "github>workos/renovate-config" - ], - "dependencyDashboard": false, - "schedule": [ - "on the 15th day of the month before 12pm" - ], - "timezone": "UTC", - "rebaseWhen": "conflicted", - "packageRules": [ - { - "matchUpdateTypes": [ - "minor", - "patch" - ], - "automerge": true, - "groupName": "minor and patch updates", - "enabled": true - }, - { - "matchUpdateTypes": [ - "major" - ], - "automerge": false - }, - { - "matchUpdateTypes": [ - "digest" - ], - "automerge": false - }, - { - "matchManagers": [ - "github-actions" - ], - "matchUpdateTypes": [ - "minor", - "patch", - "digest", - "pinDigest" - ], - "groupName": "github actions non-major", - "groupSlug": "github-actions-non-major", - "automerge": true - }, - { - "matchManagers": [ - "github-actions" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "github actions major", - "groupSlug": "github-actions-major", - "automerge": false - } + "github>workos/renovate-config:public" ] }