diff --git a/.gitea/workflows/pr-check.yaml b/.gitea/workflows/pr-check.yaml index da0df5c..32fffbc 100644 --- a/.gitea/workflows/pr-check.yaml +++ b/.gitea/workflows/pr-check.yaml @@ -78,7 +78,7 @@ jobs: PR="${{ github.event.pull_request.number }}" TOKEN="${{ secrets.GITEA_TOKEN }}" - COMMENT_BODY="❌ CI checks failed.\n\nLeak test: ${{ needs.leak_test.result }}\nLint: ${{ needs.lint_test.result }}" + COMMENT_BODY="❌ CI checks failed.\n\nLeak: ${{ needs.leak_test.result }}\nLint: ${{ needs.lint_test.result }}" # Find existing comment EXISTING_COMMENT_ID=$(curl -s -H "Authorization: token $TOKEN" \ @@ -129,7 +129,7 @@ jobs: PR="${{ github.event.pull_request.number }}" TOKEN="${{ secrets.GITEA_TOKEN }}" - COMMENT_BODY="✅ All CI checks passed.\n\nLeak test: ${{ needs.leak_test.result }}\nLint: ${{ needs.lint_test.result }}" + COMMENT_BODY="✅ CI checks passed.\n\nLeaks: ${{ needs.leak_test.result }}\nLint: ${{ needs.lint_test.result }}" # Find existing comment EXISTING_COMMENT_ID=$(curl -s -H "Authorization: token $TOKEN" \