Initial plugin source.

This commit is contained in:
Stephan Schnabel 2025-02-03 11:54:18 +01:00
parent c68a062929
commit db835da368
Signed by: stephan.schnabel
GPG key ID: 115DFD33787FABF7
16 changed files with 744 additions and 0 deletions

56
renovate.json Normal file
View file

@ -0,0 +1,56 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"labels": ["renovate", "renovate-manager/{{{manager}}}", "renovate-type/{{{updateType}}}"],
"dependencyDashboard": true,
"dependencyDashboardLabels": ["renovate"],
"dependencyDashboardApproval": true,
"dependencyDashboardOSVVulnerabilitySummary": "all",
"separateMajorMinor": true,
"separateMinorPatch": true,
"separateMultipleMinor": true,
"separateMultipleMajor": true,
"pinDigests": true,
"automerge": false,
"automergeStrategy": "fast-forward",
"rebaseWhen": "behind-base-branch",
"packageRules": [
{
"matchUpdateTypes": ["digest"],
"dependencyDashboardApproval": false,
"automergeType": "branch"
},{
"matchUpdateTypes": ["patch"],
"dependencyDashboardApproval": false,
"automerge": true
},{
"matchUpdateTypes": ["minor"],
"dependencyDashboardApproval": false
},{
"matchManagers": ["woodpecker"],
"pinDigests": false
},{
"matchPackageNames": ["nodejs/node"],
"matchUpdateTypes": ["major"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["Dockerfile", ".woodpecker/build.yaml", ".woodpecker/push.yaml"],
"matchStrings": [
"org.opencontainers.image.version=(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)",
"markdownlint-cli@(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)",
"kokuwaio/markdownlint:(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)"
],
"datasourceTemplate": "npm",
"packageNameTemplate": "markdownlint-cli"
},{
"customType": "regex",
"fileMatch": ["Dockerfile"],
"matchStrings": ["NODE_VERSION=(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)"],
"datasourceTemplate": "github-tags",
"packageNameTemplate": "nodejs/node"
}
]
}