From bc7299c963d6ebf2a45449568b0e72ee7e576224 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Tue, 9 Jul 2024 12:30:14 -0700 Subject: [PATCH] update labeler for release branches --- .github/labeler.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 6bf0d89b1..a52fe7026 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -2,35 +2,42 @@ version: v1 labels: - label: 'enhancement' + sync: true matcher: title: '^feat(\(\w+\))?: .*' - label: 'bug' + sync: true matcher: title: '^fix(\(\w+\))?: .*' - label: 'refactor' + sync: true matcher: title: '^refactor(\(\w+\))?: .*' - label: 'documentation' + sync: true matcher: title: '^docs(\(\w+\))?: .*' - label: 'test' + sync: true matcher: title: '^test(\(\w+\))?: .*' - label: 'build' + sync: true matcher: - title: '^(ci|build)(\(\w+\))?: .*' - branch: '^(?!release/.*$)' + title: '^(ci|build)(\((?!release)\w+\))?: (?!.*\brelease\b).*' - label: 'release' + sync: true matcher: branch: '^release/.*' - label: 'dependency' + sync: true matcher: title: '^(deps)(\(\w+\))?: .*'