refine comment format for Jira
diff --git a/migration/src/add_comments_jira_issues.py b/migration/src/add_comments_jira_issues.py
index d8ac422..e0fde81 100644
--- a/migration/src/add_comments_jira_issues.py
+++ b/migration/src/add_comments_jira_issues.py
@@ -41,7 +41,8 @@
 
 @retry_upto(3, 1.0, logger)
 def add_moved_to_comment(token: str, issue_id: str, github_url: str) -> bool:
-    comment = f"""[TEST] This was moved to GitHub issue: {github_url}."""
+    gh_issue_number = github_url.rsplit("/", 1)[1]
+    comment = f"""[TEST] This was moved to GitHub issue: [#{gh_issue_number}|{github_url}]."""
     res = __add_comment(token, issue_id, comment, logger)
     if res:
         logger.debug(f"Added a comment to {issue_id}")