summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-03-19 15:38:55 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2026-03-19 16:03:37 -0400
commit468d47fb90ef9b774b5bf54c9c2784661f1943b4 (patch)
tree305e377a4cdb9bffc37e3bb4576841786a9559f3 /.github
parent8401071c52d19a2bdd987a2dbe79c440f01dfae9 (diff)
Refs #36620 -- Fixed coverage comment deletion.
Follow-up to 92d4aea5ffacc38c5f7903b9410d0abec83f14de.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/coverage_comment.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/coverage_comment.yml b/.github/workflows/coverage_comment.yml
index 02b16efbb1..55e36f588d 100644
--- a/.github/workflows/coverage_comment.yml
+++ b/.github/workflows/coverage_comment.yml
@@ -68,7 +68,7 @@ jobs:
});
for (const c of comments) {
- if ((c.body || '').includes('📊 Coverage Report for Changed Files')) {
+ if ((c.body || '').includes('Uncovered lines in changed files')) {
await github.rest.issues.deleteComment({
owner: context.repo.owner,
repo: context.repo.repo,