-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set minimumReleaseAge to 0 for @seek/ #127
base: master
Are you sure you want to change the base?
Conversation
@@ -1,4 +1,5 @@ | |||
{ | |||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{ | ||
"matchManagers": ["npm"], | ||
"matchDepNames": ["^@seek/*"], | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
"schedule": "before 3:00 am every weekday", | ||
"minimumReleaseAge": "0 days", | ||
"updateNotScheduled": true | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this meant to be the same as
Lines 150 to 158 in 8f6d1b4
{ | |
"matchDepNames": ["braid-design-system", "sku", "skuba"], | |
"matchPackagePatterns": ["^@?seek", "seek$", "^@vanilla-extract/"], | |
"prPriority": 98, | |
"schedule": "after 3:00 am and before 6:00 am every weekday", | |
"minimumReleaseAge": "0 days", | |
"updateNotScheduled": true | |
}, |
It's possible there's an issue with specifying both matchDepNames
and matchPackagePatterns
, and we should probably migrate all of the latter to the former across the configuration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possibly, I'll give it a test in my renovate repo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ooo I think we want packageName
so matchPackageName
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That comment confuses me 😂
The $schema is a little off but I'm fixing that: renovatebot/renovate#31938