Skip to content

Commit e329c80

Browse files
Merge pull request #94 from InVisionApp/nrf/remove-log-group
patch: remove group that wrapped private action
2 parents 06d71b7 + 90cb33f commit e329c80

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

dist/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12158,11 +12158,9 @@ function runAction(opts) {
1215812158
setInputs(action);
1215912159
core.endGroup();
1216012160
core.info("Starting private action " + action.name);
12161-
core.startGroup("" + action.name);
1216212161
return [4 /*yield*/, exec.exec("node " + path_1.join(actionPath, action.runs.main))];
1216312162
case 5:
1216412163
_b.sent();
12165-
core.endGroup();
1216612164
core.info("Cleaning up action");
1216712165
rimraf_1.sync(opts.workDirectory);
1216812166
return [2 /*return*/];

src/action.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ export async function runAction(opts: {
8585
core.endGroup();
8686

8787
core.info(`Starting private action ${action.name}`);
88-
core.startGroup(`${action.name}`);
8988
await exec.exec(`node ${join(actionPath, action.runs.main)}`);
90-
core.endGroup();
9189

9290
core.info(`Cleaning up action`);
9391
sync(opts.workDirectory);

0 commit comments

Comments
 (0)