1
Fork 0

Merge pull request 'Disable excessive rebase for Renovate' (#233) from feat/renovate into master

Reviewed-on: #233
This commit is contained in:
Lucas Schwiderski 2025-05-30 11:57:41 +02:00
commit 12af5e3454
Signed by: Forgejo (git.sclu1034.dev)
GPG key ID: B1C9C29730D3D366

View file

@ -1,58 +1,57 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":combinePatchMinorReleases",
":enableVulnerabilityAlerts",
":rebaseStalePrs"
],
"prConcurrentLimit": 10,
"branchPrefix": "renovate/",
"customManagers": [
{
"customType": "regex",
"description": "Update _VERSION variables in Dockerfiles",
"fileMatch": [
"(^|/|\\.)Dockerfile$",
"(^|/)Dockerfile\\.[^/]*$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
]
},
{
"customType": "regex",
"description": "Update git-ref pip packages",
"fileMatch": [
"(^|/)requirements.txt$"
],
"matchStrings": [
"(# renovate:( branch=(?<currentValue>\\S+))?\\n)?git\\+(?<packageName>https://.*?)(\\.git)?@(?<currentDigest>.*?)\\n"
],
"currentValueTemplate": "{{#if currentValue}}{{{currentValue}}}{{else}}master{{/if}}",
"datasourceTemplate": "git-refs",
"versioningTemplate": "none"
}
],
"packageRules": [
{
"matchDatasources": [
"github-release"
],
"matchPackageNames": [
"llvm/llvm-project"
],
"extractVersion": "^llvmorg-(?<version>\\d+)\\.\\d+\\.\\d+$"
},
{
"matchPackageNames": [
"nodejs/node",
"nodejs"
],
"matchDatasources": [
"docker"
],
"versioning": "node"
}
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":combinePatchMinorReleases",
":enableVulnerabilityAlerts"
],
"prConcurrentLimit": 10,
"branchPrefix": "renovate/",
"customManagers": [
{
"customType": "regex",
"description": "Update _VERSION variables in Dockerfiles",
"fileMatch": [
"(^|/|\\.)Dockerfile$",
"(^|/)Dockerfile\\.[^/]*$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
]
},
{
"customType": "regex",
"description": "Update git-ref pip packages",
"fileMatch": [
"(^|/)requirements.txt$"
],
"matchStrings": [
"(# renovate:( branch=(?<currentValue>\\S+))?\\n)?git\\+(?<packageName>https://.*?)(\\.git)?@(?<currentDigest>.*?)\\n"
],
"currentValueTemplate": "{{#if currentValue}}{{{currentValue}}}{{else}}master{{/if}}",
"datasourceTemplate": "git-refs",
"versioningTemplate": "none"
}
],
"packageRules": [
{
"matchDatasources": [
"github-release"
],
"matchPackageNames": [
"llvm/llvm-project"
],
"extractVersion": "^llvmorg-(?<version>\\d+)\\.\\d+\\.\\d+$"
},
{
"matchPackageNames": [
"nodejs/node",
"nodejs"
],
"matchDatasources": [
"docker"
],
"versioning": "node"
}
]
}