From 852d7dc4f2cfaf846a1b3e3687ea3924017294f1 Mon Sep 17 00:00:00 2001 From: NetcrackerCLPLCI <112641018+NetcrackerCLPLCI@users.noreply.github.com> Date: Thu, 6 Feb 2025 15:48:54 +0500 Subject: [PATCH] [Actions Bot] Update Github Actions workflow --- .github/auto-labeler-config.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/auto-labeler-config.yaml diff --git a/.github/auto-labeler-config.yaml b/.github/auto-labeler-config.yaml new file mode 100644 index 0000000..9d8f164 --- /dev/null +++ b/.github/auto-labeler-config.yaml @@ -0,0 +1,24 @@ +--- + +conventional-commits: + - type: 'fix' + nouns: ['FIX', 'Fix', 'fix', 'FIXED', 'Fixed', 'fixed'] + labels: ['bug'] + - type: 'feature' + nouns: ['FEATURE', 'Feature', 'feature', 'FEAT', 'Feat', 'feat'] + labels: ['enhancement'] + - type: 'breaking_change' + nouns: ['BREAKING CHANGE', 'BREAKING', 'MAJOR'] + labels: ['breaking-change'] + - type: 'refactor' + nouns: ['refactor','Refactor'] + labels: ['refactor'] + - type: 'documentation' + nouns: ['doc','document','documentation'] + labels: ['documentation'] + - type: 'build' + nouns: ['build','rebuild'] + labels: ['build'] + - type: 'config' + nouns: ['config', 'conf', 'cofiguration', 'configure'] + labels: ['config']