chore(config): migrate config renovate.json5 (#925)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2026-05-10 10:36:16 +02:00 committed by GitHub
parent e5a6e9e806
commit b4ac4c19d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,26 +1,46 @@
{
"extends": ["config:base"],
"packageRules": [
{
"matchManagers": ["gomod"],
"postUpdateOptions": ["gomodTidy"],
},
{
"matchManagers": ["gomod"],
"matchUpdateTypes": ["minor", "patch", "pin"],
"automerge": true,
},
{
"matchManagers": ["gomod"],
"matchUpdateTypes": ["digest"],
"enabled": false,
},
{
"matchDepTypes": [
"action"
],
"pinDigests": true
}
extends: [
'config:recommended',
],
packageRules: [
{
matchManagers: [
'gomod',
],
postUpdateOptions: [
'gomodTidy',
],
},
{
matchManagers: [
'gomod',
],
matchUpdateTypes: [
'minor',
'patch',
'pin',
],
automerge: true,
},
{
matchManagers: [
'gomod',
],
matchUpdateTypes: [
'digest',
],
enabled: false,
},
{
matchDepTypes: [
'action',
],
pinDigests: true,
},
],
ignorePaths: [
'**/testdata/**',
'**/examples/**',
'**/scripts/**',
],
"ignorePaths": ["**/testdata/**", "**/examples/**", "**/scripts/**"]
}