From 3859b521c237592ca8d8483243f262cc394ef1a1 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Fri, 24 Mar 2023 07:39:27 +0100 Subject: [PATCH] fix(config): set subType=string for all arrays (#21118) --- lib/config/options/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/config/options/index.ts b/lib/config/options/index.ts index f178e974de..faa0653fd5 100644 --- a/lib/config/options/index.ts +++ b/lib/config/options/index.ts @@ -752,6 +752,7 @@ const options: RenovateOptions[] = [ description: 'List of Repositories.', stage: 'global', type: 'array', + subType: 'string', cli: false, globalOnly: true, }, @@ -807,6 +808,7 @@ const options: RenovateOptions[] = [ description: 'A list of package managers to enable. Only managers on the list are enabled.', type: 'array', + subType: 'string', mergeable: false, stage: 'repository', }, @@ -2053,6 +2055,7 @@ const options: RenovateOptions[] = [ 'Enable post-update options to be run after package/artifact updating.', type: 'array', default: [], + subType: 'string', allowedValues: [ 'bundlerConservative', 'helmUpdateSubChartArchives', -- GitLab