Skip to content

Commit 8a3eca8

Browse files
authored
ci: add note about false positives to workflow summary
1 parent 8ee8018 commit 8a3eca8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/prioritize-unused-includes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ jobs:
115115
116116
if (unusedIncludes.length > 0) {
117117
core.summary.addHeading('✂️ Priority Unused Chromium Includes');
118+
core.summary.addRaw(`\n> [!NOTE]\n> These are suggestions from \`clangd\` and are known to contain false positives.\n\n`);
118119
core.summary.addRaw(`Found ${unusedIncludes.length} unused includes over 10 MB of added size for a total of ${totalAddedSize.toLocaleString()} bytes of added size`);
119-
core.summary.addBreak();
120120
121121
const newlySeen = unusedIncludes.filter(([, , , , , , cacheHit]) => !cacheHit)
122122
if (newlySeen.length > 0) {

0 commit comments

Comments
 (0)