From 5834861a8df31ae85c2cd5a878da81601f4b6259 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 01:19:33 +0000 Subject: [PATCH] chore: auto-fix lint & formatting [skip ci] --- src/formatters/push.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/formatters/push.ts b/src/formatters/push.ts index 8274b58..d9045a9 100644 --- a/src/formatters/push.ts +++ b/src/formatters/push.ts @@ -46,7 +46,8 @@ export function formatPush( const commitField = (c: (typeof commits)[number]): { name: string; value: string } => { const shortId = c.id?.slice(0, 7) ?? "???????"; const msg = c.message?.split("\n")[0].slice(0, 72) ?? t("common.no_message"); - const name = repo && c.id ? `[${shortId}](https://github.com/${repo}/commit/${c.id})` : `\`${shortId}\``; + const name = + repo && c.id ? `[${shortId}](https://github.com/${repo}/commit/${c.id})` : `\`${shortId}\``; return { name, value: msg }; };