This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git


The following commit(s) were added to refs/heads/main by this push:
     new 1cbc163  refactor labels in release-drafter configuration
1cbc163 is described below

commit 1cbc1631b184b3bad7ccf0ceb11859cd8377d02c
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Sun Mar 29 12:50:33 2026 +0200

    refactor labels in release-drafter configuration
    
    What changed:
    - Changed single label entries to a list format for consistency.
    - Updated labels for "removed", "deprecated", "documentation", "build", and 
"dependencies".
    
    Why:
    - Ensures uniformity in label formatting across the configuration.
    - Prepares for version V7 of release drafter
---
 .github/release-drafter.yml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml
index dcae296..2a973a2 100644
--- a/.github/release-drafter.yml
+++ b/.github/release-drafter.yml
@@ -30,10 +30,12 @@ categories:
       - breaking
 
   - title: 🚨 Removed
-    label: removed
+    labels:
+      - removed
 
   - title: ⚠️ Deprecated
-    label: deprecated
+    labels:
+      - deprecated
 
   - title: ":tada: Major features and improvements"
     labels:
@@ -62,7 +64,8 @@ categories:
       - developer 
 
   - title: 📝 Documentation updates
-    label: documentation
+    labels:
+      - documentation
 
   - title: 👻 Maintenance
     labels: 
@@ -71,7 +74,8 @@ categories:
       - maintenance
 
   - title: 🔧 Build
-    label: build      
+    labels:
+      - build      
 
   - title: 🚦 Tests
     labels: 
@@ -80,7 +84,8 @@ categories:
 
   # Default label used by Dependabot
   - title: 📦 Dependency updates
-    label: dependencies
+    labels:
+      - dependencies
 
 exclude-labels:
   - reverted

Reply via email to