98 lines
2.2 KiB
JSON
98 lines
2.2 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended",
|
|
":dependencyDashboard",
|
|
":semanticCommits",
|
|
":timezone(Europe/Berlin)",
|
|
"schedule:weekly"
|
|
],
|
|
"labels": [
|
|
"dependencies",
|
|
"renovate"
|
|
],
|
|
"assignees": [
|
|
"JonKazama-Hellion"
|
|
],
|
|
"prHourlyLimit": 10,
|
|
"prConcurrentLimit": 20,
|
|
"rebaseWhen": "behind-base-branch",
|
|
"ignoreDeps": [
|
|
"actions/release-action",
|
|
"https://gitea.com/actions/release-action"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"description": "Group all minor and patch updates per ecosystem in one PR",
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": "minor and patch updates ({{manager}})"
|
|
},
|
|
{
|
|
"description": "Major updates always get their own PR with breaking-change label",
|
|
"matchUpdateTypes": [
|
|
"major"
|
|
],
|
|
"labels": [
|
|
"dependencies",
|
|
"major-update",
|
|
"breaking-change"
|
|
],
|
|
"addLabels": [
|
|
"needs-review"
|
|
]
|
|
},
|
|
{
|
|
"description": "TypeScript type definitions stay grouped with each other",
|
|
"groupName": "type definitions",
|
|
"matchPackageNames": [
|
|
"@types/{/,}**"
|
|
]
|
|
},
|
|
{
|
|
"description": "Dev dependencies in their own group",
|
|
"matchDepTypes": [
|
|
"devDependencies"
|
|
],
|
|
"groupName": "dev dependencies"
|
|
},
|
|
{
|
|
"description": "Pin GitHub Action versions by SHA for supply-chain hygiene",
|
|
"matchManagers": [
|
|
"github-actions"
|
|
],
|
|
"pinDigests": true
|
|
},
|
|
{
|
|
"description": "Branch-ref refs (e.g. @main) cannot be tag-resolved — disable lookups for our known offenders",
|
|
"matchManagers": [
|
|
"gitea-tags"
|
|
],
|
|
"matchPackageNames": [
|
|
"actions/release-action"
|
|
],
|
|
"enabled": false
|
|
}
|
|
],
|
|
"vulnerabilityAlerts": {
|
|
"labels": [
|
|
"security",
|
|
"vulnerability"
|
|
],
|
|
"schedule": [
|
|
"at any time"
|
|
],
|
|
"prPriority": 10
|
|
},
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"schedule": [
|
|
"before 6am on monday"
|
|
],
|
|
"commitMessageAction": "Refresh"
|
|
},
|
|
"osvVulnerabilityAlerts": true
|
|
}
|