Skip to content

Commit 15c3d41

Browse files
committed
Fix issues with not skipping __
1 parent c75f5ae commit 15c3d41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/src/info/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export async function getAllPackages(gitRoot: string) {
101101
return;
102102
}
103103

104-
if (item.isDirectory() && item.name !== 'node_modules') {
104+
if (item.isDirectory() && item.name !== 'node_modules' && !item.name.startsWith('__')) {
105105
const fullPath = pathlib.join(currentDir, item.name);
106106
await recurser(fullPath);
107107
}

0 commit comments

Comments
 (0)