mirror of
https://github.com/Xevion/dynamic-preauth.git
synced 2025-12-15 22:11:33 -06:00
Add automated dependency management with Renovate and comprehensive CI checks including formatting, clippy, audit, and frontend build validation.
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
":dependencyDashboard",
|
|
":semanticCommits",
|
|
":automergeDigest",
|
|
":automergeMinor"
|
|
],
|
|
"schedule": ["before 5am on monday"],
|
|
"timezone": "America/Chicago",
|
|
"prConcurrentLimit": 3,
|
|
"prCreation": "not-pending",
|
|
"rebaseWhen": "behind-base-branch",
|
|
"semanticCommitScope": "deps",
|
|
"vulnerabilityAlerts": {
|
|
"labels": ["security"],
|
|
"automerge": true,
|
|
"schedule": ["at any time"]
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"description": "Group all non-major dependency updates together",
|
|
"groupName": "all non-major dependencies",
|
|
"matchUpdateTypes": ["minor", "patch", "digest"],
|
|
"automerge": true,
|
|
"automergeType": "pr",
|
|
"minimumReleaseAge": "3 days"
|
|
},
|
|
{
|
|
"description": "Major updates get individual PRs for review",
|
|
"matchUpdateTypes": ["major"],
|
|
"automerge": false,
|
|
"minimumReleaseAge": "7 days"
|
|
}
|
|
],
|
|
"postUpdateOptions": ["pnpmDedupe"],
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"schedule": ["before 5am on monday"]
|
|
}
|
|
}
|