authelia/.renovaterc
Amir Zarrinkafsh e091032279
docs: update contribution guidelines (#1666)
* docs: update contribution guidelines

* add release commit message type

* update none/empty scope definition

* add go mod tidy post update option
2021-01-30 19:29:07 +11:00

61 lines
933 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"
],
"rebaseWhen": "never"
}