Skip to content

Commit b2e6683

Browse files
committed
Fix
1 parent cc16032 commit b2e6683

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/actions/reports-group/load-metadata/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/load-metadata/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/load-metadata/index.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,11 @@ async function run() {
2121
core.setFailed('Unable to retrieve any group. Something wrong most likely happened !');
2222
}
2323

24-
const res = trustedMetadataPathList.map((trustedGroupPath) => {
24+
return trustedMetadataPathList.map((trustedGroupPath) => {
2525
core.info('Load '+ trustedGroupPath);
2626

27-
const innerRes = trustedPathConverter.trustedMetadataUnder(trustedGroupPath);
28-
core.info('DEBUG innerRes='+JSON.stringify(innerRes));
29-
30-
return innerRes;
27+
return trustedPathConverter.trustedMetadataUnder(trustedGroupPath);
3128
});
32-
core.info('DEBUG res='+JSON.stringify(res));
33-
34-
return res;
3529
}
3630
);
3731
core.debug('Group paths=' + JSON.stringify(trustedMetadataList));

0 commit comments

Comments
 (0)