mirror of
https://github.com/ReCloudStudio/WebHooker.git
synced 2026-09-22 16:11:29 +00:00
fix(push): use commit message as link text
This commit is contained in:
parent
e01ce3505e
commit
4b3f5189a8
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ export function formatPush(
|
|||
const shortId = c.id?.slice(0, 7) ?? "???????";
|
||||
const msg = c.message?.split("\n")[0].slice(0, 72) ?? t("common.no_message");
|
||||
const url = repo && c.id ? `https://github.com/${repo}/commit/${c.id}` : null;
|
||||
return { name: `\`${shortId}\``, value: url ? `[${shortId}](${url}) — ${msg}` : msg };
|
||||
return { name: `\`${shortId}\``, value: url ? `[${msg}](${url})` : msg };
|
||||
};
|
||||
|
||||
if (count <= 5) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue