Skip to content

Commit

Permalink
chore(config): migrate config renovate.json (#89)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rob Aleck <[email protected]>
  • Loading branch information
renovate[bot] and mnbf9rca authored Dec 4, 2024
1 parent a34b190 commit 5a17477
Showing 1 changed file with 63 additions and 42 deletions.
105 changes: 63 additions & 42 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,65 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:automergeDaily"
],
"rangeStrategy": "widen",

"packageRules": [
{
"depTypeList": ["dependencies"],
"updateTypes": ["patch", "minor", "major"],
"automerge": false
},
{
"depTypeList": ["devDependencies"],
"automerge": false
},
{
"vulnerabilityAlerts": true,
"matchUpdateTypes": ["patch", "minor", "major"],
"automerge": true
},
{
"matchManagers": ["dockerfile", "github-actions"],
"pinDigests": false
},
{
"matchPackageNames": ["pydantic", "requests"],
"rangeStrategy": "bump",
"automerge": false,
"separateMinorPatch": true,
"labels": ["renovate-pydantic-requests"],
"commitMessageAction": "Test update",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}"
}
],
"lockFileMaintenance": {
"enabled": false
},
"rebaseWhen": "behind-base-branch",
"updateNotScheduled": true
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:automergeDaily"
],
"rangeStrategy": "widen",
"packageRules": [
{
"matchDepTypes": [
"dependencies"
],
"matchUpdateTypes": [
"patch",
"minor",
"major"
],
"automerge": false
},
{
"matchDepTypes": [
"devDependencies"
],
"automerge": false
},
{
"vulnerabilityAlerts": {
"enabled": true
},
"matchUpdateTypes": [
"patch",
"minor",
"major"
],
"automerge": true
},
{
"matchManagers": [
"dockerfile",
"github-actions"
],
"pinDigests": false
},
{
"matchPackageNames": [
"pydantic",
"requests"
],
"rangeStrategy": "bump",
"automerge": false,
"separateMinorPatch": true,
"labels": [
"renovate-pydantic-requests"
],
"commitMessageAction": "Test update",
"commitMessageTopic": "{{depName}}",
"commitMessageExtra": "to {{newVersion}}"
}
],
"lockFileMaintenance": {
"enabled": false
},
"rebaseWhen": "behind-base-branch",
"updateNotScheduled": true
}

0 comments on commit 5a17477

Please sign in to comment.