mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-06-09 08:54:53 -04:00
chore(config): migrate config renovate.json5 (#925)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
e5a6e9e806
commit
b4ac4c19d9
1 changed files with 43 additions and 23 deletions
|
|
@ -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/**"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue