Skip to content

Commit

Permalink
fix(config): set subType=string for all arrays (#21118)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins authored Mar 24, 2023
1 parent 1f86d15 commit 3859b52
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/config/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,7 @@ const options: RenovateOptions[] = [
description: 'List of Repositories.',
stage: 'global',
type: 'array',
subType: 'string',
cli: false,
globalOnly: true,
},
Expand Down Expand Up @@ -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',
},
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 3859b52

Please sign in to comment.