chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-08-16 14:47:01 +00:00
parent df0edbb581
commit 3bcc98efc8
9 changed files with 152 additions and 77 deletions

View file

@ -32,14 +32,16 @@ describe("message title spec", () => {
sender,
}),
);
expect(msg.title).toBe(
"acme/widget: Pushed 1 commit to main",
);
expect(msg.title).toBe("acme/widget: Pushed 1 commit to main");
expect(msg.description).toBe(
"[`abcd123`](https://github.com/acme/widget/commit/abcd1234ef) fix stuff",
);
expect(msg.fields).toEqual([
{ name: "Changes", value: "[View comparison](https://github.com/acme/widget/compare/abc...def):", inline: false },
{
name: "Changes",
value: "[View comparison](https://github.com/acme/widget/compare/abc...def):",
inline: false,
},
]);
});