@@ -683,7 +683,7 @@ function checkAllChangedFiles(changedFiles, globPatternsConfigs, dot) {
683683}
684684exports.checkAllChangedFiles = checkAllChangedFiles;
685685function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) {
686- core.debug(` checking "anyGlobToAnyFile " config patterns`);
686+ core.debug(` checking "any-glob-to-any-file " config patterns`);
687687 const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
688688 for (const matcher of matchers) {
689689 const matchedFile = changedFiles.find(changedFile => {
@@ -700,7 +700,7 @@ function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) {
700700}
701701exports.checkIfAnyGlobMatchesAnyFile = checkIfAnyGlobMatchesAnyFile;
702702function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) {
703- core.debug(` checking "allGlobsToAnyFile " config patterns`);
703+ core.debug(` checking "all-globs-to-any-file " config patterns`);
704704 const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
705705 for (const changedFile of changedFiles) {
706706 const mismatchedGlob = matchers.find(matcher => {
@@ -719,7 +719,7 @@ function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) {
719719}
720720exports.checkIfAllGlobsMatchAnyFile = checkIfAllGlobsMatchAnyFile;
721721function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) {
722- core.debug(` checking "anyGlobToAllFiles " config patterns`);
722+ core.debug(` checking "any-glob-to-all-files " config patterns`);
723723 const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
724724 for (const matcher of matchers) {
725725 const mismatchedFile = changedFiles.find(changedFile => {
@@ -738,7 +738,7 @@ function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) {
738738}
739739exports.checkIfAnyGlobMatchesAllFiles = checkIfAnyGlobMatchesAllFiles;
740740function checkIfAllGlobsMatchAllFiles(changedFiles, globs, dot) {
741- core.debug(` checking "allGlobsToAllFiles " config patterns`);
741+ core.debug(` checking "all-globs-to-all-files " config patterns`);
742742 const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
743743 for (const changedFile of changedFiles) {
744744 const mismatchedGlob = matchers.find(matcher => {
0 commit comments