This is an automated email from the ASF dual-hosted git repository.
reiabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/master by this push:
new 45b02a778 Create release.yml for changelog management
45b02a778 is described below
commit 45b02a7782685d52cc4b0e0d114cb3793ae2d30a
Author: reiabreu <[email protected]>
AuthorDate: Sun Apr 19 17:37:36 2026 +0100
Create release.yml for changelog management
Add changelog configuration with categories and exclusions.
---
.github/release.yml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/.github/release.yml b/.github/release.yml
new file mode 100644
index 000000000..6d05cf647
--- /dev/null
+++ b/.github/release.yml
@@ -0,0 +1,50 @@
+changelog:
+ categories:
+ - title: "๐ก๏ธ Security Fixes"
+ labels:
+ - "security"
+ - "vulnerability"
+ - "cve"
+ - title: "โ ๏ธ Breaking Changes"
+ labels:
+ - "breaking-change"
+ - "major"
+ - title: "๐ New Features"
+ labels:
+ - "feature"
+ - "enhancement"
+ - "new-stuff"
+ - title: "๐ Bug Fixes"
+ labels:
+ - "bug"
+ - "fix"
+ - "patch"
+ - title: "๐ฆ Dependency Upgrades"
+ labels:
+ - "dependencies"
+ - "dependencies-label"
+ - title: "๐ Documentation"
+ labels:
+ - "documentation"
+ - "docs"
+ - title: "๐งช Testing & QA"
+ labels:
+ - "tests"
+ - "qa"
+ - title: "๐ Maintenance & Refactoring"
+ labels:
+ - "chore"
+ - "refactor"
+ - "performance"
+ - title: "๐ค CI/CD & Build"
+ labels:
+ - "ci"
+ - "github-actions"
+ - "build"
+ exclude:
+ labels:
+ - "skip-changelog"
+ - "wip"
+ - "duplicate"
+ authors:
+ - "github-actions[bot]"