Initial Commit

This commit is contained in:
Markus Pesch 2025-03-30 19:38:53 +02:00
commit ab4cf8c8b2
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
10 changed files with 165 additions and 0 deletions

1
CODEOWNERS Normal file
View File

@ -0,0 +1 @@
* @volker.raschek

4
README.md Normal file
View 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
View 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
View File

@ -0,0 +1,7 @@
{
"platformAutomerge": true,
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch"
}

22
github-actions.json Normal file
View 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
View 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
View 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
View 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
View 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
View 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>.*)"
]
}
]
}