backstage-entity-validator/renovate.json
Stephan Schnabel 49079cdcfb
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
chore: fix renovate preset location
2025-06-27 11:30:21 +02:00

33 lines
1.1 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>kokuwaio/renovate-config", ":reviewer(stephan.schnabel)"],
"packageRules": [
{
"matchPackageNames": ["nodejs/node"],
"matchUpdateTypes": ["major"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["Dockerfile", ".woodpecker/build.yaml"],
"matchStrings": [
"kokuwaio/backstage-entity-validator:(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)",
"backstage-entity-validator@(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)",
"version: (?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)"
],
"datasourceTemplate": "npm",
"packageNameTemplate": "@roadiehq/backstage-entity-validator"
},{
"customType": "regex",
"managerFilePatterns": ["Dockerfile"],
"matchStrings": [
"nodejs.org/download/release/(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)/",
"node-(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)-linux-\\$SUFFIX"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "nodejs/node"
}
]
}