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 7960cc2 commit 1494e4fCopy full SHA for 1494e4f
lib/cli/build.ts
@@ -16,7 +16,12 @@ export async function build(args: string[]) {
16
...fs
17
.readdirSync(githubWorkflowsPath)
18
.map((file) => path.join(githubWorkflowsPath, file))
19
- .filter((file) => file.endsWith(".ts")),
+ .filter((file) => {
20
+ if (!file.endsWith(".ts")) return false;
21
+ if (path.basename(file).startsWith("_")) return false;
22
+
23
+ return true;
24
+ }),
25
);
26
}
27
0 commit comments