From 5cc621691d268e05b0b7328a9d951b1205f4fe7b Mon Sep 17 00:00:00 2001 From: Tobias Stadler <28538704+devtobi@users.noreply.github.com> Date: Mon, 9 Sep 2024 09:28:33 +0200 Subject: [PATCH] Update labeler.yml (#139) Update labeler configuration to work with auto generated branch names from issue templates Co-authored-by: Simon Hirtreiter <14137977+simonhir@users.noreply.github.com> --- .github/labeler.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 533d4f2a..41d772c1 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,17 +1,17 @@ "Type: Feature": - - head-branch: [ '^feat', 'feature' ] + - head-branch: [ '^feat', '-feature-' ] "Type: Bug": - - head-branch: [ '^bug', 'bug' ] + - head-branch: [ '^bug', '-bug-' ] "Type: Maintenance": - - head-branch: [ '^maint', 'maintenance', '^refact' ] + - head-branch: [ '^maint', '^refact', '-maintenance-' ] "Type: Documentation": - - head-branch: [ '^docs', "documentation" ] + - head-branch: [ '^docs', '-documentation-' ] - changed-files: - any-glob-to-any-file: [ 'docs/**' ] "Type: Dependency": - - head-branch: [ '^dep', 'dependency' ] + - head-branch: [ '^dep', '-dependency-' ] "Type: Security": - - head-branch: [ '^sec', 'security' ] + - head-branch: [ '^sec', '-security-' ] "Component: API-Gateway": - changed-files: - any-glob-to-any-file: [ 'refarch-gateway/**' ]