From 9813f04906ade4279636f0cb2f05df56a40993c5 Mon Sep 17 00:00:00 2001 From: Matthias Schoettle Date: Mon, 3 Feb 2025 17:32:08 +0000 Subject: [PATCH] Add link to original item on GitLab --- src/githubHelper.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/githubHelper.ts b/src/githubHelper.ts index 6e27e59..3045481 100644 --- a/src/githubHelper.ts +++ b/src/githubHelper.ts @@ -1316,6 +1316,10 @@ export class GithubHelper { this.gitlabHelper ); + if ('web_url' in item) { + str += '\n\n*Migrated from GitLab: ' + item.web_url + '*'; + } + return str; }