mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
d1c0f781f1
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
68 lines
2.1 KiB
JSON
68 lines
2.1 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": ["github>woodpecker-ci/renovate-config"],
|
|
"customManagers": [
|
|
{
|
|
"customType": "regex",
|
|
"fileMatch": ["shared/constant/constant.go"],
|
|
"matchStrings": [
|
|
"//\\s*renovate:\\s*datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+DefaultCloneImage = \"docker.io/woodpeckerci/plugin-git:(?<currentValue>.*)\""
|
|
],
|
|
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
|
|
}
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchCurrentVersion": "<1.0.0",
|
|
"matchPackageNames": ["github.com/distribution/reference"],
|
|
"matchUpdateTypes": ["major", "minor"],
|
|
"dependencyDashboardApproval": true
|
|
},
|
|
{
|
|
"matchPackageNames": ["github.com/charmbracelet/huh/spinner"],
|
|
"enabled": false
|
|
},
|
|
{
|
|
"matchManagers": ["docker-compose"],
|
|
"matchFileNames": ["docker-compose.gitpod.yaml"],
|
|
"addLabels": ["devx"]
|
|
},
|
|
{
|
|
"groupName": "golang-lang",
|
|
"matchPackagePatterns": ["^golang$", "xgo"],
|
|
"matchUpdateTypes": ["minor", "patch"]
|
|
},
|
|
{
|
|
"groupName": "golang-packages",
|
|
"matchManagers": ["gomod"],
|
|
"matchUpdateTypes": ["minor", "patch"]
|
|
},
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"matchFileNames": ["web/package.json"],
|
|
"addLabels": ["ui"]
|
|
},
|
|
{
|
|
"matchManagers": ["npm"],
|
|
"matchFileNames": ["docs/**/package.json"],
|
|
"addLabels": ["documentation"]
|
|
},
|
|
{
|
|
"groupName": "web npm deps non-major",
|
|
"matchManagers": ["npm"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"matchFileNames": ["web/package.json"]
|
|
},
|
|
{
|
|
"groupName": "docs npm deps non-major",
|
|
"matchManagers": ["npm"],
|
|
"matchUpdateTypes": ["minor", "patch"],
|
|
"matchFileNames": ["docs/**/package.json"]
|
|
},
|
|
{
|
|
"matchDatasources": ["docker"],
|
|
"matchPackagePatterns": ["xgo"],
|
|
"versioning": "regex:^go-(?<major>\\d+)?(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))$"
|
|
}
|
|
]
|
|
}
|