Skip to content

Commit 67d059e

Browse files
test summary
1 parent 0b385dc commit 67d059e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dist/blog-post-workflow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13979,7 +13979,7 @@ var runWorkflow = async () => {
1397913979
core.summary.addRaw(`
1398013980
#### Posts written to readme: ${postsArray.length}`, true);
1398113981
core.summary.addSeparator();
13982-
core.summary.addDetails("Debug Info", "Some juicy info for devs: \n\n```json\n" + JSON.stringify(postsArray, null, 2) + "\n```\n\n");
13982+
core.summary.addDetails("Debug: Some juicy :beer: info for advanced users", "\n```json\n" + JSON.stringify(postsArray, null, 2) + "\n```\n\n");
1398313983
await core.summary.write();
1398413984
process.exit(jobFailFlag ? 1 : 0);
1398513985
}

src/blog-post-workflow.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,8 @@ const runWorkflow = async () => {
388388
core.summary.addRaw(`Blog posts fetched:`, true);
389389
core.summary.addTable(summaryTable);
390390
core.summary.addRaw(`\n#### Posts written to readme: ${postsArray.length}`, true);
391-
core.summary.addSeparator()
392-
core.summary.addDetails('Debug Info', 'Some juicy info for devs: \n\n```json\n' + JSON.stringify(postsArray, null, 2) + '\n```\n\n');
391+
core.summary.addSeparator();
392+
core.summary.addDetails('Debug: Some juicy :beer: info for advanced users', '\n```json\n' + JSON.stringify(postsArray, null, 2) + '\n```\n\n');
393393
await core.summary.write();
394394
process.exit(jobFailFlag ? 1 : 0);
395395
}

0 commit comments

Comments
 (0)