authelia/.renovaterc
Amir Zarrinkafsh 968fffb7fe
ci(renovate): enable auto rebase (#1679)
The initial deps backlog has mostly been addressed now, this along with some reshuffling and changes to node jobs/priority means we should be able to turn auto rebase back on.
2021-01-31 20:43:32 +11:00

60 lines
908 B
Plaintext

{
"extends": [
"config:base",
":semanticCommitTypeAll(build)",
":separatePatchReleases"
],
"ignorePresets": [
":combinePatchMinorReleases",
"helpers:disableTypesNodeMajor",
":prHourlyLimit2",
":semanticPrefixFixDepsChoreOthers"
],
"enabledManagers": [
"bundler",
"docker-compose",
"dockerfile",
"gomod",
"npm"
],
"labels": [
"dependencies"
],
"packageRules": [
{
"datasources": [
"docker"
],
"addLabels": [
"docker"
]
},
{
"datasources": [
"go"
],
"addLabels": [
"go"
]
},
{
"datasources": [
"npm"
],
"addLabels": [
"javascript"
]
},
{
"datasources": [
"rubygems"
],
"addLabels": [
"ruby"
]
}
],
"postUpdateOptions": [
"gomodTidy"
]
}