Skip to content
Snippets Groups Projects
Commit b5a515b5 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

feat!: default internalChecksFilter to strict (#18460)

BREAKING CHANGE: Default value for internalChecksFilter changes from none to strict
parent a446c2bc
No related branches found
No related tags found
No related merge requests found
...@@ -1486,7 +1486,7 @@ const options: RenovateOptions[] = [ ...@@ -1486,7 +1486,7 @@ const options: RenovateOptions[] = [
description: 'When and how to filter based on internal checks.', description: 'When and how to filter based on internal checks.',
type: 'string', type: 'string',
allowedValues: ['strict', 'flexible', 'none'], allowedValues: ['strict', 'flexible', 'none'],
default: 'none', default: 'strict',
}, },
{ {
name: 'prCreation', name: 'prCreation',
......
...@@ -52,6 +52,7 @@ describe('workers/repository/process/lookup/filter-checks', () => { ...@@ -52,6 +52,7 @@ describe('workers/repository/process/lookup/filter-checks', () => {
describe('.filterInternalChecks()', () => { describe('.filterInternalChecks()', () => {
it('returns latest release if internalChecksFilter=none', async () => { it('returns latest release if internalChecksFilter=none', async () => {
config.internalChecksFilter = 'none';
const res = await filterInternalChecks( const res = await filterInternalChecks(
config, config,
versioning, versioning,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment