Skip to content

Commit 8b7dfa6

Browse files
committed
Update log info
1 parent bb5054a commit 8b7dfa6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/execute-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export async function executeCommand(commandString: string) {
4040
} finally {
4141
finished++;
4242
logger.brief(
43-
`${finished}/${repositories.length} repositories finished ...`,
43+
`${finished}/${repositories.length} test on '${repository.repository}' completed.`,
4444
);
4545
}
4646
}),

src/logger.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import * as github from "@actions/github";
2-
import { IS_TRIGGERED_BY_GITHUB_ISSUE_COMMENT, GITHUB_ACTION_JOB_URL } from "./constants.ts";
2+
import {
3+
IS_TRIGGERED_BY_GITHUB_ISSUE_COMMENT,
4+
GITHUB_ACTION_JOB_URL,
5+
} from "./constants.ts";
36
import { getOctokit } from "./octokit.ts";
47
import { codeBlock } from "./utilities.ts";
58
import { inspect } from "node:util";

0 commit comments

Comments
 (0)