Skip to content

Commit

Permalink
Fix styling of checks table
Browse files Browse the repository at this point in the history
  • Loading branch information
Xantier committed Oct 20, 2023
1 parent 81882b6 commit 3171899
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,14 @@ ${
? ':white_check_mark:'
: ':no_entry_sign:'
}\n
${scorecardResult} checks succeeded.\n
${scorecardResult} checks succeeded.
#### Check Results
| Check | Description | Result |
|--------------|-----|:-----------:|
${checkResults.map(
it => `| ${it.name} | ${it.description} | ${it.result} |\n`,
)}
${checkResults
.map(it => `| ${it.name} | ${it.description} | ${it.result} |`)
.join('\n')}
`),
});
} catch (e: any) {
Expand Down

0 comments on commit 3171899

Please sign in to comment.