From 9fe82cc2c8380bc71cf79a7652de786940650c35 Mon Sep 17 00:00:00 2001 From: Rhys Arkins Date: Thu, 9 Jul 2020 07:31:18 +0200 Subject: [PATCH] fix(gitlab): reduce pr body max to 50k chars --- 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 e3950db9d81572..e40f141aaa1377 100644 --- a/lib/platform/gitlab/index.ts +++ b/lib/platform/gitlab/index.ts @@ -554,7 +554,7 @@ export function getPrBody(input: string): string { .replace(/Pull Request/g, 'Merge Request') .replace(/PR/g, 'MR') .replace(/\]\(\.\.\/pull\//g, '](!'), - 60000 + 50000 ); }