style: auto format

This commit is contained in:
github-actions[bot] 2025-10-25 11:33:27 +00:00
parent 259bdcc002
commit 00bd2cc244
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ function formatEventItem(event: any) {
break;
case 'PullRequestReviewEvent':
title = `${actor.login} reviewed a pull request in ${repo.name}`;
description = `${actor.login} ${payload.review?.state ?? "operated"} the PR` + (payload.review?.body ? `: ${payload.review.body}` : '');
description = `${actor.login} ${payload.review?.state ?? 'operated'} the PR` + (payload.review?.body ? `: ${payload.review.body}` : '');
link = payload.review?.html_url || `https://github.com/${repo.name}`;
break;
case 'IssueCommentEvent':