mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
feat(preset): add containerbase replacements (#20941)
Co-authored-by: Rhys Arkins <rhys@arkins.net> Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
This commit is contained in:
parent
25ea3d1864
commit
62e91aff40
1 changed files with 34 additions and 0 deletions
|
@ -14,6 +14,7 @@ export const presets: Record<string, Preset> = {
|
||||||
extends: [
|
extends: [
|
||||||
'replacements:apollo-server-to-scoped',
|
'replacements:apollo-server-to-scoped',
|
||||||
'replacements:babel-eslint-to-eslint-parser',
|
'replacements:babel-eslint-to-eslint-parser',
|
||||||
|
'replacements:containerbase',
|
||||||
'replacements:cucumber-to-scoped',
|
'replacements:cucumber-to-scoped',
|
||||||
'replacements:fastify-to-scoped',
|
'replacements:fastify-to-scoped',
|
||||||
'replacements:hapi-to-scoped',
|
'replacements:hapi-to-scoped',
|
||||||
|
@ -104,6 +105,39 @@ export const presets: Record<string, Preset> = {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
containerbase: {
|
||||||
|
description: 'Replace containerbase dependencies.',
|
||||||
|
packageRules: [
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Replace `containerbase/buildpack` with `containerbase/base`.',
|
||||||
|
matchDatasources: ['docker'],
|
||||||
|
matchPackageNames: ['containerbase/buildpack'],
|
||||||
|
replacementName: 'containerbase/base',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Replace `docker.io/containerbase/buildpack` with `docker.io/containerbase/base`.',
|
||||||
|
matchDatasources: ['docker'],
|
||||||
|
matchPackageNames: ['docker.io/containerbase/buildpack'],
|
||||||
|
replacementName: 'docker.io/containerbase/base',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Replace `ghcr.io/containerbase/buildpack` with `ghcr.io/containerbase/base`.',
|
||||||
|
matchDatasources: ['docker'],
|
||||||
|
matchPackageNames: ['ghcr.io/containerbase/buildpack'],
|
||||||
|
replacementName: 'ghcr.io/containerbase/base',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description:
|
||||||
|
'Replace `renovatebot/internal-tools` with `containerbase/internal-tools`.',
|
||||||
|
matchDatasources: ['github-tags'],
|
||||||
|
matchPackageNames: ['renovatebot/internal-tools'],
|
||||||
|
replacementName: 'containerbase/internal-tools',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
'cucumber-to-scoped': {
|
'cucumber-to-scoped': {
|
||||||
description: '`cucumber` became scoped.',
|
description: '`cucumber` became scoped.',
|
||||||
packageRules: [
|
packageRules: [
|
||||||
|
|
Loading…
Reference in a new issue