diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index 6ed4aa0a7eb22c2c7099b04bce9f78fbdd47a27a..26e813a294c3d4574739fd38197c43bfff6202c0 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -1478,7 +1478,8 @@ function getPrBody(input) {
   const massagedInput = input
     // to be safe, replace all github.com links with renovatebot redirector
     .replace(/href="https?:\/\/github.com\//g, 'href="https://togithub.com/')
-    .replace(/]\(https:\/\/github\.com\//g, '](https://togithub.com/');
+    .replace(/]\(https:\/\/github\.com\//g, '](https://togithub.com/')
+    .replace(/]: https:\/\/github\.com\//g, ']: https://togithub.com/');
   return smartTruncate(massagedInput);
 }