@@ -683,7 +683,7 @@ function checkAllChangedFiles(changedFiles, globPatternsConfigs, dot) {
683
683
}
684
684
exports.checkAllChangedFiles = checkAllChangedFiles;
685
685
function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) {
686
- core.debug(` checking "anyGlobToAnyFile " config patterns`);
686
+ core.debug(` checking "any-glob-to-any-file " config patterns`);
687
687
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
688
688
for (const matcher of matchers) {
689
689
const matchedFile = changedFiles.find(changedFile => {
@@ -700,7 +700,7 @@ function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) {
700
700
}
701
701
exports.checkIfAnyGlobMatchesAnyFile = checkIfAnyGlobMatchesAnyFile;
702
702
function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) {
703
- core.debug(` checking "allGlobsToAnyFile " config patterns`);
703
+ core.debug(` checking "all-globs-to-any-file " config patterns`);
704
704
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
705
705
for (const changedFile of changedFiles) {
706
706
const mismatchedGlob = matchers.find(matcher => {
@@ -719,7 +719,7 @@ function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) {
719
719
}
720
720
exports.checkIfAllGlobsMatchAnyFile = checkIfAllGlobsMatchAnyFile;
721
721
function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) {
722
- core.debug(` checking "anyGlobToAllFiles " config patterns`);
722
+ core.debug(` checking "any-glob-to-all-files " config patterns`);
723
723
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
724
724
for (const matcher of matchers) {
725
725
const mismatchedFile = changedFiles.find(changedFile => {
@@ -738,7 +738,7 @@ function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) {
738
738
}
739
739
exports.checkIfAnyGlobMatchesAllFiles = checkIfAnyGlobMatchesAllFiles;
740
740
function checkIfAllGlobsMatchAllFiles(changedFiles, globs, dot) {
741
- core.debug(` checking "allGlobsToAllFiles " config patterns`);
741
+ core.debug(` checking "all-globs-to-all-files " config patterns`);
742
742
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
743
743
for (const changedFile of changedFiles) {
744
744
const mismatchedGlob = matchers.find(matcher => {
0 commit comments