We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75f5ae commit 15c3d41Copy full SHA for 15c3d41
.github/actions/src/info/index.ts
@@ -101,7 +101,7 @@ export async function getAllPackages(gitRoot: string) {
101
return;
102
}
103
104
- if (item.isDirectory() && item.name !== 'node_modules') {
+ if (item.isDirectory() && item.name !== 'node_modules' && !item.name.startsWith('__')) {
105
const fullPath = pathlib.join(currentDir, item.name);
106
await recurser(fullPath);
107
0 commit comments