Skip to content

Commit 2ff8714

Browse files
authored
Merge pull request #72 from matlab-actions/remove-action-name
Update version of common-utils and fix calls to add summaries.
2 parents 3e0112d + 742b093 commit 2ff8714

3 files changed

Lines changed: 85 additions & 67 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: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,9 @@ async function run() {
4141
.finally(() => {
4242
const runnerTemp = process.env.RUNNER_TEMP || "";
4343
const runId = process.env.GITHUB_RUN_ID || "";
44-
const actionName = process.env.GITHUB_ACTION || "";
45-
46-
buildSummary.processAndAddBuildSummary(runnerTemp, runId, actionName);
47-
testResultsSummary.processAndAddTestSummary(
48-
runnerTemp,
49-
runId,
50-
actionName,
51-
workspaceDir,
52-
);
44+
45+
buildSummary.processAndAddBuildSummary(runnerTemp, runId);
46+
testResultsSummary.processAndAddTestSummary(runnerTemp, runId, workspaceDir);
5347
core.summary.write();
5448
});
5549
}

0 commit comments

Comments
 (0)