Skip to content

Commit c2487b3

Browse files
authored
ci: fix newly seen section of priority unused workflow
1 parent 5a45813 commit c2487b3

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
@@ -118,7 +118,7 @@ jobs:
118118
core.summary.addRaw(`Found ${unusedIncludes.length} unused includes over 10 MB of added size for a total of ${totalAddedSize.toLocaleString()} bytes of added size`);
119119
core.summary.addBreak();
120120
121-
const newlySeen = unusedIncludes.filter(([, , , , , cacheHit]) => !cacheHit)
121+
const newlySeen = unusedIncludes.filter(([, , , , , , cacheHit]) => !cacheHit)
122122
if (newlySeen.length > 0) {
123123
core.summary.addHeading('Not Seen Before', '2');
124124
addTable(newlySeen);

0 commit comments

Comments
 (0)