From b38e34547f5e8151cec9d08f8ce3f19f73c8be3f Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Fri, 22 Nov 2024 11:40:37 -0500 Subject: [PATCH] Revert "fix(bitbucket): source link root path (#32676)" This reverts commit b7951c3c0a2497e75afbfd90b373466c60d72c80. --- lib/modules/platform/bitbucket/index.spec.ts | 8 -------- lib/modules/platform/bitbucket/index.ts | 1 - 2 files changed, 9 deletions(-) diff --git a/lib/modules/platform/bitbucket/index.spec.ts b/lib/modules/platform/bitbucket/index.spec.ts index 19546256ec0d0e..92ca09c7817f29 100644 --- a/lib/modules/platform/bitbucket/index.spec.ts +++ b/lib/modules/platform/bitbucket/index.spec.ts @@ -1656,14 +1656,6 @@ describe('modules/platform/bitbucket/index', () => { expect(bitbucket.massageMarkdown(prBody)).toMatchSnapshot(); }); - - it('converts source links', () => { - const prBody = '[source](https://bitbucket.org/foo/bar/tree/HEAD)'; - - expect(bitbucket.massageMarkdown(prBody)).toBe( - '[source](https://bitbucket.org/foo/bar/src/HEAD)', - ); - }); }); describe('updatePr()', () => { diff --git a/lib/modules/platform/bitbucket/index.ts b/lib/modules/platform/bitbucket/index.ts index 97915bcefa686a..9678aa2443b45e 100644 --- a/lib/modules/platform/bitbucket/index.ts +++ b/lib/modules/platform/bitbucket/index.ts @@ -583,7 +583,6 @@ export function massageMarkdown(input: string): string { .replace(regEx(/<\/?(details|blockquote)>/g), '') .replace(regEx(`\n---\n\n.*?.*?\n`), '') .replace(regEx(/\]\(\.\.\/pull\//g), '](../../pull-requests/') - .replace(regEx(/\/tree\/HEAD/g), '/src/HEAD') .replace(regEx(//g), ''); }