From 4be192c7d6f4a40fbae6c7916ee951159577e574 Mon Sep 17 00:00:00 2001 From: Josh Dales Date: Mon, 27 Mar 2023 16:23:04 -0400 Subject: [PATCH] Run the build command --- dist/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 7338ee46..ac64e973 100644 --- a/dist/index.js +++ b/dist/index.js @@ -212,7 +212,6 @@ function isAllMatch(changedFile, matchers) { } function checkAnyChangedFiles(changedFiles, globs) { const matchers = globs.map(g => new minimatch_1.Minimatch(g)); - core.debug(` checking "any" patterns`); for (const changedFile of changedFiles) { if (isAnyMatch(changedFile, matchers)) { core.debug(` "any" patterns matched against ${changedFile}`); @@ -225,7 +224,6 @@ function checkAnyChangedFiles(changedFiles, globs) { exports.checkAnyChangedFiles = checkAnyChangedFiles; function checkAllChangedFiles(changedFiles, globs) { const matchers = globs.map(g => new minimatch_1.Minimatch(g)); - core.debug(` checking "all" patterns`); for (const changedFile of changedFiles) { if (!isAllMatch(changedFile, matchers)) { core.debug(` "all" patterns did not match against ${changedFile}`); @@ -424,6 +422,7 @@ function checkMatchConfigs(changedFiles, matchConfigs) { exports.checkMatchConfigs = checkMatchConfigs; function checkMatch(changedFiles, matchConfig) { if (!Object.keys(matchConfig).length) { + core.debug(` no "any" or "all" patterns to check`); return false; } if (matchConfig.all) {