Initial Commit
This commit is contained in:
commit
ab4cf8c8b2
1
CODEOWNERS
Normal file
1
CODEOWNERS
Normal file
@ -0,0 +1 @@
|
|||||||
|
* @volker.raschek
|
4
README.md
Normal file
4
README.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# renovate-config
|
||||||
|
|
||||||
|
This project contains configuration presets for renovate, a bot to update dependencies. These presets can be integrated
|
||||||
|
into the `renovate.json` of the respective git project using the `extends` attribute.
|
25
container.json
Normal file
25
container.json
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/container-image"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"enabled": true,
|
||||||
|
"excludePackagePatterns": [
|
||||||
|
"^(docker\\.io/)?tcort/markdown-link-check"
|
||||||
|
],
|
||||||
|
"groupName": "container images",
|
||||||
|
"groupSlug": "container-images",
|
||||||
|
"matchDatasources": [
|
||||||
|
"docker"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
7
default.json
Normal file
7
default.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"platformAutomerge": true,
|
||||||
|
"prConcurrentLimit": 0,
|
||||||
|
"prHourlyLimit": 0,
|
||||||
|
"rebaseLabel": "renovate/rebase",
|
||||||
|
"rebaseWhen": "behind-base-branch"
|
||||||
|
}
|
22
github-actions.json
Normal file
22
github-actions.json
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/github-action"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"enabled": true,
|
||||||
|
"groupName": "github actions",
|
||||||
|
"groupSlug": "github-actions",
|
||||||
|
"matchManagers": [
|
||||||
|
"github-actions"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
29
golang.json
Normal file
29
golang.json
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/golang"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"enabled": true,
|
||||||
|
"excludePackagePatterns": [
|
||||||
|
"^github\\.com/docker/docker",
|
||||||
|
"^gopkg\\.in/yaml"
|
||||||
|
],
|
||||||
|
"groupName": "go modules",
|
||||||
|
"groupSlug": "go-modules",
|
||||||
|
"matchDatasources": [
|
||||||
|
"go"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"postUpdateOptions": [
|
||||||
|
"gomodTidy"
|
||||||
|
]
|
||||||
|
}
|
18
grouping.json
Normal file
18
grouping.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"groupName": "grouped packages",
|
||||||
|
"groupSlug": "grouped-packages",
|
||||||
|
"matchPackagePatterns": [
|
||||||
|
"*"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch",
|
||||||
|
"pin",
|
||||||
|
"digest"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
22
maven.json
Normal file
22
maven.json
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/maven"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"enabled": true,
|
||||||
|
"groupName": "maven artifacts",
|
||||||
|
"groupSlug": "maven-artifacts",
|
||||||
|
"matchDatasources": [
|
||||||
|
"maven"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
npm.json
Normal file
20
npm.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/npm"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"enabled": true,
|
||||||
|
"matchManagers": [
|
||||||
|
"npm"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
17
regexp.json
Normal file
17
regexp.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"customManagers": [
|
||||||
|
{
|
||||||
|
"customType": "regex",
|
||||||
|
"fileMatch": [
|
||||||
|
"(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$",
|
||||||
|
"(^|/)action\\.ya?ml$",
|
||||||
|
"(^|/)Makefile$",
|
||||||
|
"(^|/)[\\w-]*\\.sh$"
|
||||||
|
],
|
||||||
|
"matchStrings": [
|
||||||
|
"=\"?(?<currentValue>[^\"\\n]*)\"? # renovate: datasource=(?<datasource>.*) registryUrl=(?<registryUrl>.*) depName=(?<depName>.*)"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user