From 6d79808b044ceb641cd70aa72d36c12e84d2de26 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Tue, 12 May 2020 21:13:49 +0200
Subject: [PATCH] fix(gitlab): reduce maximum MR body size to 60k

---
 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 b88f43968a..0e88681bb7 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/'),
-    100000
+    60000
   );
 }
 
-- 
GitLab