From 9f89157e17ee2a6f1a2ee8b90931d9c2989aedaf Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 12 May 2020 19:05:46 +0200
Subject: [PATCH] fix(gitlab): reduce MR body size to 100k (#6212)

---
 lib/platform/gitlab/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/platform/gitlab/index.ts b/lib/platform/gitlab/index.ts
index e5418ad2a4..b88f43968a 100644
--- a/lib/platform/gitlab/index.ts
+++ b/lib/platform/gitlab/index.ts
@@ -544,7 +544,7 @@ export function getPrBody(input: string): string {
       .replace(/Pull Request/g, 'Merge Request')
       .replace(/PR/g, 'MR')
       .replace(/\]\(\.\.\/pull\//g, '](../merge_requests/'),
-    1000000
+    100000
   );
 }
 
-- 
GitLab