fix(gitlab): reduce maximum MR body size to 60k

This commit is contained in:
Rhys Arkins 2020-05-12 21:13:49 +02:00 committed by GitHub
parent 7caac0987c
commit 6d79808b04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -544,7 +544,7 @@ export function getPrBody(input: string): string {
.replace(/Pull Request/g, 'Merge Request') .replace(/Pull Request/g, 'Merge Request')
.replace(/PR/g, 'MR') .replace(/PR/g, 'MR')
.replace(/\]\(\.\.\/pull\//g, '](../merge_requests/'), .replace(/\]\(\.\.\/pull\//g, '](../merge_requests/'),
100000 60000
); );
} }