This commit is contained in:
Alexander Kachkaev
2023-03-27 09:47:52 +01:00
parent b28379f6ed
commit a7cc8a62ef
2 changed files with 2 additions and 2 deletions

View File

@@ -210,7 +210,7 @@ function checkAll(
globs: string[],
dot: boolean
): boolean {
const matchers = globs.map(g => new Minimatch(g));
const matchers = globs.map(g => new Minimatch(g), {dot});
core.debug(` checking "all" patterns`);
for (const changedFile of changedFiles) {
if (!isMatch(changedFile, matchers)) {