From 3e910bb4a333beea953b08cbb6afdee3cf41aecc Mon Sep 17 00:00:00 2001
From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Date: Sun, 10 Apr 2022 09:07:37 +0200
Subject: [PATCH] fix: set `mergeable`=`false` for `ignorePaths` config option
 (#14946)

---
 lib/config/options/index.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/config/options/index.ts b/lib/config/options/index.ts
index 6fd3ef2a76..6daa3d5af4 100644
--- a/lib/config/options/index.ts
+++ b/lib/config/options/index.ts
@@ -742,6 +742,7 @@ const options: RenovateOptions[] = [
     description:
       'Skip any package file whose path matches one of these. Can be a string or glob pattern.',
     type: 'array',
+    mergeable: false,
     subType: 'string',
     stage: 'repository',
     default: ['**/node_modules/**', '**/bower_components/**'],
-- 
GitLab