We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d73e0 commit 03593cfCopy full SHA for 03593cf
1 file changed
.github/workflows/skill-quality-report.yml
@@ -158,10 +158,11 @@ jobs:
158
const codeowners = parseCodeowners();
159
160
// Count findings
161
+ // The skill-validator uses emoji markers: ❌ for errors, ⚠ for warnings, ℹ for advisories
162
const combined = skillsOutput + '\n' + agentsOutput;
- const errorCount = (combined.match(/\bError\b/gi) || []).length;
163
- const warningCount = (combined.match(/\bWarning\b/gi) || []).length;
164
- const advisoryCount = (combined.match(/\bAdvisory\b/gi) || []).length;
+ const errorCount = (combined.match(/❌/g) || []).length;
+ const warningCount = (combined.match(/⚠/g) || []).length;
165
+ const advisoryCount = (combined.match(/ℹ️/g) || []).length;
166
167
// Count total skills & agents checked
168
let skillDirs = [];
0 commit comments