From 467aebced4593542b802734921adeaa7306dc13d Mon Sep 17 00:00:00 2001 From: borislavr Date: Tue, 21 Jan 2025 17:00:27 +0300 Subject: [PATCH] fix: Update auto-labeler configuration for improved label mapping --- .github/auto-labeler-config.yaml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/auto-labeler-config.yaml b/.github/auto-labeler-config.yaml index a346293..151526b 100644 --- a/.github/auto-labeler-config.yaml +++ b/.github/auto-labeler-config.yaml @@ -3,19 +3,16 @@ conventional-commits: - type: 'fix' nouns: ['FIX', 'Fix', 'fix', 'FIXED', 'Fixed', 'fixed'] - labels: ['bug'] + labels: ['fix'] - type: 'feature' nouns: ['FEATURE', 'Feature', 'feature', 'FEAT', 'Feat', 'feat'] - labels: ['enhancement'] + labels: ['feature'] - type: 'breaking_change' nouns: ['BREAKING CHANGE', 'BREAKING', 'MAJOR'] - labels: ['BREAKING CHANGE'] - - type: 'documentation' - nouns: ['doc','docu','document','documentation'] - labels: ['documentation'] - - type: 'build' - nouns: ['build','rebuild'] - labels: ['build'] - - type: 'config' - nouns: ['config', 'conf', 'cofiguration', 'configure'] - labels: ['config'] + labels: ['breaking-change'] + - type: 'bug' + nouns: ['bug', 'Bug', 'BUG'] + labels: ['bug'] + - type: 'bugfix' + nouns: ['bugfix', 'Bugfix', 'bug-fix', 'BugFix'] + labels: ['bugfix']