You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add category-based grouping of findings with descriptions
- Show severity breakdown (HIGH/MEDIUM/LOW counts)
- Provide clearer recommendations based on severity:
- HIGH: "Action Required" - must fix before merge
- MEDIUM: "Approved with Suggestions" - consider fixing
- LOW only: "Approved" - minor suggestions
- Use markdown formatting for better readability
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
assessmentLine='Assessment: High-severity issues were found that should be addressed before merge.';
150
-
}elseif(total>0){
151
-
assessmentLine='Assessment: Changes look acceptable overall; consider addressing the findings.';
197
+
summary+=`**Action Required:** ${high} high-severity issue${high===1 ? '' : 's'} must be addressed before merging. `;
198
+
summary+='Please review the inline comments and apply the suggested fixes.\n';
199
+
}elseif(medium>0){
200
+
summary+=`**Approved with Suggestions:** No blocking issues found, but ${medium} medium-severity issue${medium===1 ? '' : 's'} should be considered. `;
201
+
summary+='Review the inline comments for improvement opportunities.\n';
152
202
}else{
153
-
assessmentLine='Assessment: Changes look good; no high-severity issues detected.';
203
+
summary+=`**Approved:** Only minor issues found. Consider addressing the ${low} low-severity suggestion${low===1 ? '' : 's'} when convenient.\n`;
0 commit comments