Skip to content
Snippets Groups Projects
Unverified Commit e7f90d50 authored by Nik Skoufis's avatar Nik Skoufis Committed by GitHub
Browse files

fix: Add registryTemplateUrl field to allowed fields for regexManager (#9239)

parent ed683a77
No related branches found
No related tags found
No related merge requests found
...@@ -291,6 +291,7 @@ describe('config/validation', () => { ...@@ -291,6 +291,7 @@ describe('config/validation', () => {
matchStrings: ['ENV (?<currentValue>.*?)\\s'], matchStrings: ['ENV (?<currentValue>.*?)\\s'],
depNameTemplate: 'foo', depNameTemplate: 'foo',
datasourceTemplate: 'bar', datasourceTemplate: 'bar',
registryUrlTemplate: 'foobar',
}, },
], ],
}; };
......
...@@ -277,6 +277,7 @@ export async function validateConfig( ...@@ -277,6 +277,7 @@ export async function validateConfig(
'lookupNameTemplate', 'lookupNameTemplate',
'datasourceTemplate', 'datasourceTemplate',
'versioningTemplate', 'versioningTemplate',
'registryUrlTemplate',
]; ];
// TODO: fix types // TODO: fix types
for (const regexManager of val as any[]) { for (const regexManager of val as any[]) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment