refactor(git_server): rework sideband messages format
+ 2
- 3
app/services/gitServer/onPushEvent.ts
@@ -51,9 +51,8 @@ const makeOnPushEvent: ServiceMethodFactory<
           : `${repoUrlPrefix}:${Env.PORT}/${repoUrlSuffix}`;
 
       if (data.payload != null) {
-        message.write(
-          `Hey ${data.username}, welcome back 🖖. See the details of your push at:\n`
-        );
+        message.write(`Hey ${data.username}, welcome back 🖖.\n\n`);
+        message.write(`📖 See the details of your push at:\n`);
         if (data.payload.refType === "head") {
           message.write(`🔗 ${repoUrlBase}/show/${data.payload.commitId}\n`);
           if (data.payload.refName !== Const.PRIMARY_BRANCH_REF) {