diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index 6cdfaf0545eaa7b7df7bcc8ded99482559e1d2ea..e0c99b26be94cf5c29079e32abe62417aacd7345 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -1477,11 +1477,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://renovatebot.com/gh/'
-    )
-    .replace(/]\(https:\/\/github\.com\//g, '](https://renovatebot.com/gh/');
+    .replace(/href="https?:\/\/github.com\//g, 'href="https://togithub.com/')
+    .replace(/]\(https:\/\/github\.com\//g, '](https://togithub.com/');
   return smartTruncate(massagedInput);
 }