Skip to content

Commit e255849

Browse files
committed
Message
1 parent 2fdd675 commit e255849

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/execute-command.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ export async function executeCommand(commandString: string) {
3535
),
3636
);
3737

38+
const failedJobsCount = results.filter(
39+
(result) => result.status === "rejected",
40+
).length;
41+
await logger.brief(
42+
`Job finished, succeed on ${results.length - failedJobsCount} repositories, fail on ${failedJobsCount} repositories.\n\nPreparing reports ...`,
43+
);
44+
3845
return {
3946
alternative,
4047
original,

0 commit comments

Comments
 (0)