mirror of
https://github.com/actions/labeler.git
synced 2025-12-10 11:41:56 +00:00
Fix
This commit is contained in:
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -197,7 +197,7 @@ function checkAny(changedFiles, globs, dot) {
|
||||
}
|
||||
// equivalent to "Array.every()" but expanded for debugging and clarity
|
||||
function checkAll(changedFiles, globs, dot) {
|
||||
const matchers = globs.map(g => new minimatch_1.Minimatch(g));
|
||||
const matchers = globs.map(g => new minimatch_1.Minimatch(g), { dot });
|
||||
core.debug(` checking "all" patterns`);
|
||||
for (const changedFile of changedFiles) {
|
||||
if (!isMatch(changedFile, matchers)) {
|
||||
|
||||
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user