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 430615d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dist/blog-post-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -13858,10 +13858,10 @@ 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: ":white_check_mark:" },
{ data: `${result.value.length}` },
{ data: "<code> Runner succeeded </code>", colspan: "6" }
{ header: false, data: `<a href='${runnerNameArray[index]}'>${runnerNameArray[index]}</a>`, colspan: "6" },
{ header: false, data: ":white_check_mark:" },
{ header: false, data: `${result.value.length}` },
{ header: false, data: "<code> Runner succeeded </code>", colspan: "6" }
]);
if (typeof feedNamesList[index] !== void 0 && feedNamesList[index]) {
result.value = result.value.map((item2) => {
Expand Down
8 changes: 4 additions & 4 deletions src/blog-post-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ 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: ':white_check_mark:'},
{data: `${result.value.length}`},
{data: '<code> Runner succeeded </code>', colspan: '6'}]);
{header: false, data: `<a href='${runnerNameArray[index]}'>${runnerNameArray[index]}</a>`, colspan: '6'},
{header: false, data: ':white_check_mark:'},
{header: false, data: `${result.value.length}`},
{header: false, data: '<code> Runner succeeded </code>', colspan: '6'}]);
// Adds feed name to the items
if (typeof feedNamesList[index] !== undefined && feedNamesList[index]) {
result.value = result.value.map((item) => {
Expand Down

0 comments on commit 430615d

Please sign in to comment.