summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-02-12 15:31:15 -0500
committerGitHub <noreply@github.com>2026-02-12 15:31:15 -0500
commitfee2cb2d6dfefad614b27e659f5648c793006ef8 (patch)
tree11eef947afc17c86224c0ebdeaa268aa32195d16 /.github
parent8d2a925a0e0bc6d1161ab41ad35f8422c549cada (diff)
Refs #36620 -- Removed stray + from coverage comment workflow step.
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 287cc558b5..02b16efbb1 100644
--- a/.github/workflows/coverage_comment.yml
+++ b/.github/workflows/coverage_comment.yml
@@ -52,7 +52,7 @@ jobs:
}
const commentBody = (
'#### Uncovered lines in changed files\n\n```\n' + body + '```\n' +
- + '**Note:** Missing lines are warnings only. Some database-specific lines may not be measured. [More information](https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#code-coverage-on-pull-requests)'
+ '**Note:** Missing lines are warnings only. Some database-specific lines may not be measured. [More information](https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#code-coverage-on-pull-requests)'
);
const prNumber = parseInt(process.env.PR_NUMBER);