Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 1 addition & 55 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>workos/renovate-config"
],
"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"
},
{
"matchUpdateTypes": [
"major"
],
"automerge": false
},
{
"matchUpdateTypes": [
"digest"
],
"automerge": false
},
{
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch",
"digest",
"pinDigest"
],
"extractVersion": "^v(?<version>\\d+\\.\\d+\\.\\d+)$",
"groupName": "github actions non-major",
"groupSlug": "github-actions-non-major",
"automerge": true
},
{
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"major"
],
"extractVersion": "^v(?<version>\\d+\\.\\d+\\.\\d+)$",
"groupName": "github actions major",
"groupSlug": "github-actions-major",
"automerge": false
}
"github>workos/renovate-config:public"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 PR description does not match the actual change

The PR description says "Add enabled: true to the existing minor/patch rule," but the diff completely removes all local packageRules, schedule, timezone, and rebaseWhen config and switches the preset reference from github>workos/renovate-config to github>workos/renovate-config:public. This is a much larger change than described. If workos/renovate-config:public does not replicate the removed schedule ("on the 15th day of the month before 12pm"), timezone, and package rules (automerge for minor/patch, no automerge for major/digest, github-actions grouping), those behaviours will silently regress — for example, Renovate may start running on its default daily cadence instead of the monthly schedule. Can you confirm that workos/renovate-config:public includes equivalent schedule, timezone, rebaseWhen, and packageRules (automerge for minor/patch, github-actions grouping, etc.) so none of the removed local config is lost?

]
}
Loading