Skip to content

Commit 34b1825

Browse files
committed
chore: change some logs message
1 parent e23dc70 commit 34b1825

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14297,7 +14297,7 @@ async function run() {
1429714297
const BadgeEnabled = core.getBooleanInput("badge-enabled");
1429814298
const badgeFilename = core.getInput("badge-filename");
1429914299

14300-
core.info("Saving summary-json report into the repo wiki");
14300+
core.info("Saving json-summary report into the repo wiki");
1430114301
await copyFile(coverageFilename, path.join(WIKI_PATH, baseSummaryFilename));
1430214302

1430314303
if (BadgeEnabled) {
@@ -14323,7 +14323,7 @@ async function run() {
1432314323
} else {
1432414324
core.info("Running on pull request branch");
1432514325
if (!existsSync(path.join(WIKI_PATH, baseSummaryFilename))) {
14326-
core.info("No base summary-json found");
14326+
core.info("No base json-summary found");
1432714327
return;
1432814328
}
1432914329

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function run() {
4646
const BadgeEnabled = core.getBooleanInput("badge-enabled");
4747
const badgeFilename = core.getInput("badge-filename");
4848

49-
core.info("Saving summary-json report into the repo wiki");
49+
core.info("Saving json-summary report into the repo wiki");
5050
await copyFile(coverageFilename, path.join(WIKI_PATH, baseSummaryFilename));
5151

5252
if (BadgeEnabled) {
@@ -72,7 +72,7 @@ async function run() {
7272
} else {
7373
core.info("Running on pull request branch");
7474
if (!existsSync(path.join(WIKI_PATH, baseSummaryFilename))) {
75-
core.info("No base summary-json found");
75+
core.info("No base json-summary found");
7676
return;
7777
}
7878

0 commit comments

Comments
 (0)