Skip to content

Commit

Permalink
test summary
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Sep 8, 2024
1 parent 2e144e0 commit a8e7aeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/blog-post-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -13858,7 +13858,7 @@ var runWorkflow = async () => {
if (result.status === "fulfilled") {
core.info(runnerNameArray[index] + " runner succeeded. Post count: " + result.value.length);
summaryTable.push([
{ data: `<a hfef="${runnerNameArray[index]}">${runnerNameArray[index]}</a>`, colspan: "6" },
{ data: `<a href="${runnerNameArray[index]}">${runnerNameArray[index]}</a>`, colspan: "6" },
{ data: ":white_check_mark:" },
{ data: `${result.value.length}` },
{ data: "<code> Runner succeeded </code>", colspan: "6" }
Expand Down
2 changes: 1 addition & 1 deletion src/blog-post-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const runWorkflow = async () => {
// Succeeded
core.info(runnerNameArray[index] + ' runner succeeded. Post count: ' + result.value.length);
summaryTable.push([
{data: `<a hfef="${runnerNameArray[index]}">${runnerNameArray[index]}</a>`, colspan: '6'},
{data: `<a href="${runnerNameArray[index]}">${runnerNameArray[index]}</a>`, colspan: '6'},
{data: ':white_check_mark:'},
{data: `${result.value.length}`},
{data: '<code> Runner succeeded </code>', colspan: '6'}]);
Expand Down

0 comments on commit a8e7aeb

Please sign in to comment.