We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1fdf182 + 8f85273 commit 0b4db60Copy full SHA for 0b4db60
1 file changed
.github/workflows/pr-review-bot.yml
@@ -199,9 +199,9 @@ jobs:
199
comments.push(`## ❌ TypeScript: ${tscErrors} errors`);
200
}
201
202
- // Security audit
203
- if (auditCritical > 0 || auditHigh > 0) {
204
- comments.push(`## ${auditCritical > 0 ? '❌' : '⚠️'} Security: ${auditCritical} critical, ${auditHigh} high vulnerabilities`);
+ // Security audit (only report critical vulnerabilities)
+ if (auditCritical > 0) {
+ comments.push(`## ❌ Security: ${auditCritical} critical vulnerabilities`);
205
206
207
// New TODOs
0 commit comments