Skip to content

Commit 0b4db60

Browse files
authored
Merge pull request #2954 from DFXswiss/develop
Release: develop -> main
2 parents 1fdf182 + 8f85273 commit 0b4db60

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pr-review-bot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ jobs:
199199
comments.push(`## ❌ TypeScript: ${tscErrors} errors`);
200200
}
201201
202-
// Security audit
203-
if (auditCritical > 0 || auditHigh > 0) {
204-
comments.push(`## ${auditCritical > 0 ? '❌' : '⚠️'} Security: ${auditCritical} critical, ${auditHigh} high vulnerabilities`);
202+
// Security audit (only report critical vulnerabilities)
203+
if (auditCritical > 0) {
204+
comments.push(`## Security: ${auditCritical} critical vulnerabilities`);
205205
}
206206
207207
// New TODOs

0 commit comments

Comments
 (0)