Skip to content

Commit 23dd3da

Browse files
committed
Remove action name
1 parent 6fb86a6 commit 23dd3da

3 files changed

Lines changed: 84 additions & 66 deletions

File tree

package-lock.json

Lines changed: 81 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@actions/core": "^3.0.0",
2424
"@actions/exec": "^3.0.0",
25-
"common-utils": "github:matlab-actions/common-utils#v2.1.1"
25+
"common-utils": "github:matlab-actions/common-utils#v2.2.0"
2626
},
2727
"devDependencies": {
2828
"@types/jest": "^30.0.0",

src/index.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,9 @@ async function run() {
3434
.finally(() => {
3535
const runnerTemp = process.env.RUNNER_TEMP || "";
3636
const runId = process.env.GITHUB_RUN_ID || "";
37-
const actionName = process.env.GITHUB_ACTION || "";
3837

39-
buildSummary.processAndAddBuildSummary(runnerTemp, runId, actionName);
40-
testResultsSummary.processAndAddTestSummary(
41-
runnerTemp,
42-
runId,
43-
actionName,
44-
workspaceDir,
45-
);
38+
buildSummary.processAndAddBuildSummary(runnerTemp, runId);
39+
testResultsSummary.processAndAddTestSummary(runnerTemp, runId, workspaceDir);
4640
core.summary.write();
4741
});
4842
}

0 commit comments

Comments
 (0)