From 17694aa238ff34af0223689fae0280db0dc1528a Mon Sep 17 00:00:00 2001 From: Josh Dales Date: Sat, 18 Mar 2023 16:43:15 -0400 Subject: [PATCH] Update the argument type for toMatchConfig --- src/labeler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/labeler.ts b/src/labeler.ts index 7d25d320..b24753ae 100644 --- a/src/labeler.ts +++ b/src/labeler.ts @@ -127,7 +127,7 @@ function getLabelConfigMapFromObject( return labelMap; } -function toMatchConfig(config: MatchConfig): MatchConfig { +function toMatchConfig(config: any): MatchConfig { const changedFilesConfig = toChangedFilesMatchConfig(config); const branchConfig = toBranchMatchConfig(config);