We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579fc2e commit 2188a2cCopy full SHA for 2188a2c
1 file changed
.github/workflows/claude-pr-review-run.yml
@@ -83,10 +83,10 @@ jobs:
83
LINT_OUTPUT=$(lintrunner -m main 2>&1)
84
LINT_EXIT=$?
85
if [ $LINT_EXIT -eq 0 ]; then
86
- LINT_STATUS="✅ Passed"
+ LINT_STATUS="Passed"
87
else
88
LINT_ERRORS=$(echo "$LINT_OUTPUT" | grep -c "error" || echo "0")
89
- LINT_STATUS="❌ Failed (${LINT_ERRORS} errors)"
+ LINT_STATUS="Failed (${LINT_ERRORS} errors)"
90
fi
91
92
# Check for new dependencies in requirements.txt
0 commit comments