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`; } }); });