From 2bf42e445d46d9e5e9e2acff87011a96f3a088c6 Mon Sep 17 00:00:00 2001 From: Josh Dales Date: Sat, 7 Aug 2021 15:06:24 -0400 Subject: [PATCH] Add branch to MatchConfig interface --- src/labeler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/labeler.ts b/src/labeler.ts index 2fdf0ff2..81f4bc4b 100644 --- a/src/labeler.ts +++ b/src/labeler.ts @@ -6,6 +6,7 @@ import { Minimatch, IMinimatch } from "minimatch"; interface MatchConfig { all?: string[]; any?: string[]; + branch?: string; } type StringOrMatchConfig = string | MatchConfig;