Run prettier

This commit is contained in:
Josh Dales
2023-01-11 17:09:44 -05:00
parent 7f8d8e472d
commit c54c5a2057
2 changed files with 27 additions and 27 deletions

View File

@@ -243,7 +243,7 @@ function checkBranch(glob: string | string[]): boolean {
core.debug(` checking "branch" pattern against ${branchName}`);
if (Array.isArray(glob)) {
const matchers = glob.map((g) => new Minimatch(g));
const matchers = glob.map(g => new Minimatch(g));
for (const matcher of matchers) {
if (matchBranchPattern(matcher, branchName)) {
core.debug(` "branch" patterns matched against ${branchName}`);