Skip to content

Commit

Permalink
remove chart column
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 5, 2024
1 parent bb367ee commit 205a28a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ jobs:
.split('<table class="coverage-summary">')
.pop()
?.split("</table>")[0]
.replaceAll(/<a [^>]*>([^<]*)<\/a>/g, "$1");
.replaceAll(/<a [^>]*>([^<]*)<\/a>/g, "$1")
.replaceAll(/<td[^>]*class="pic high"[^>]*>[^<]*<\/td>/g, "");
const commentBody = `
## PR Checks Complete
Expand All @@ -114,7 +115,7 @@ jobs:
${passedSteps.length > 0 ? `${passedStepsDetails}` : ''}
<details>
<summary>
📈 - Code Coverage Report
📈 - Code Coverage:
</summary>
<table class="coverage-summary">
${coverageData}
Expand Down

0 comments on commit 205a28a

Please sign in to comment.