We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa31b81 commit cdae9a2Copy full SHA for cdae9a2
.github/actions/info/dist.js
@@ -55,6 +55,9 @@ async function main() {
55
}
56
const packages = await findPackages(dirPath);
57
core.setOutput("packages", packages);
58
+ core.summary.addHeading(`Found ${packageType}`);
59
+ core.summary.addList(packages);
60
+ core.summary.write();
61
62
try {
63
await main();
.github/actions/info/index.ts
@@ -67,6 +67,7 @@ async function main() {
67
core.setOutput('packages', packages);
68
core.summary.addHeading(`Found ${packageType}`);
69
core.summary.addList(packages);
70
71
72
73
0 commit comments