Adjust the indenting again

This commit is contained in:
Josh Dales
2023-03-27 16:52:42 -04:00
parent b1a2f85ed8
commit 2f1dfd1ef0
4 changed files with 32 additions and 32 deletions

View File

@@ -260,7 +260,7 @@ export function checkAll(
matchConfigs: BaseMatchConfig[],
changedFiles: string[]
): boolean {
core.debug(` checking "all" patterns`);
core.debug(` checking "all" patterns`);
if (!Object.keys(matchConfigs).length) {
core.debug(` no "all" patterns to check`);
return false;
@@ -286,7 +286,7 @@ export function checkAll(
}
}
core.debug(` "all" patterns matched all files`);
core.debug(` "all" patterns matched all configs`);
return true;
}