-
Notifications
You must be signed in to change notification settings - Fork 5
chore: update Renovate config #463
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,29 @@ | ||
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
| "extends": [ | ||
| "config:recommended" | ||
| ], | ||
| "extends": ["config:recommended"], | ||
| "timezone": "Europe/Berlin", | ||
| "schedule": "before 2am every weekday", | ||
| "schedule": ["at any time"], | ||
| "labels": [ | ||
| "bot", | ||
| "renovate", | ||
| "dependencies", | ||
| "skip:test:long_running", | ||
| "skip:codecov" | ||
| ], | ||
| "ignorePaths": [ | ||
| "plugins/manifest/package.json" | ||
| "lockFileMaintenance": { | ||
| "enabled": true, | ||
| "schedule": ["before 5am on monday"] | ||
| }, | ||
| "packageRules": [ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Excellent addition! 👍 Grouping minor and patch updates significantly reduces PR noise while maintaining safety:
This aligns well with the repository's CI/CD strategy where:
Tip: If grouped PRs become too large, consider adding |
||
| { | ||
| "groupName": "minor and patch dependencies", | ||
| "matchManagers": ["pep621"], | ||
| "matchUpdateTypes": ["minor", "patch"] | ||
| }, | ||
| { | ||
| "groupName": "GitHub Actions", | ||
| "matchManagers": ["github-actions"], | ||
| "separateMajorMinor": false | ||
| } | ||
| ] | ||
| } | ||
| } | ||
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.
Great addition! 🔧
Lock file maintenance is a critical feature for repositories using
uv:What it does:
uv.lockeven when no direct dependencies changedSchedule rationale:
Benefits for this medical device SDK:
This is especially important given the SDK's security posture (HIPAA compliance, medical data handling).