diff --git a/lib/platform/gitlab/__snapshots__/index.spec.ts.snap b/lib/platform/gitlab/__snapshots__/index.spec.ts.snap index 826343a3f85e7af2d982af28467434f5112893da..0fb8a41debe2682f514beb2f56a5a6a6b2536cfc 100644 --- a/lib/platform/gitlab/__snapshots__/index.spec.ts.snap +++ b/lib/platform/gitlab/__snapshots__/index.spec.ts.snap @@ -1710,7 +1710,7 @@ exports[`platform/gitlab getPrBody(input) returns updated pr body 1`] = ` These updates have all been created already. Click a checkbox below to force a retry/rebase of any. - - [ ] <!-- rebase-branch=renovate/major-got-packages -->[build(deps): update got packages (major)](../merge_requests/2433) (\`gh-got\`, \`gl-got\`, \`got\`) + - [ ] <!-- rebase-branch=renovate/major-got-packages -->[build(deps): update got packages (major)](!2433) (\`gh-got\`, \`gl-got\`, \`got\`) " `; diff --git a/lib/platform/gitlab/index.ts b/lib/platform/gitlab/index.ts index 9fe89571d459c1e63e03885af8c0244237a44b2c..73d38964585161536083f86a745ac4a2d75e5fce 100644 --- a/lib/platform/gitlab/index.ts +++ b/lib/platform/gitlab/index.ts @@ -586,7 +586,7 @@ export function getPrBody(input: string): string { input .replace(/Pull Request/g, 'Merge Request') .replace(/PR/g, 'MR') - .replace(/\]\(\.\.\/pull\//g, '](../merge_requests/'), + .replace(/\]\(\.\.\/pull\//g, '](!'), 60000 ); }