From 5f8ba0953421845e0e9599c30a4814bd671cb4d2 Mon Sep 17 00:00:00 2001 From: John Knox Date: Fri, 7 Aug 2020 09:25:17 -0700 Subject: [PATCH] Add github links to changelog Summary: thefutureisnowoldman Changelog: Changelog entries now link to their GitHub commits Reviewed By: passy Differential Revision: D22999105 fbshipit-source-id: 77e4884a3515245ba9296d8c4f59cdcb3c4b098d --- desktop/scripts/generate-changelog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/scripts/generate-changelog.js b/desktop/scripts/generate-changelog.js index a451a3124..21cb0814d 100755 --- a/desktop/scripts/generate-changelog.js +++ b/desktop/scripts/generate-changelog.js @@ -66,7 +66,7 @@ hgLog const match = diffline.match(changeLogLineRe); if (match) { changes++; - contents += ` * ${diff} - ${match[2]}\n`; + contents += ` * [${diff}](https://github.com/facebook/flipper/search?q=${diff}&type=Commits) - ${match[2]}\n`; } }); });