Skip to content

Commit

Permalink
ci: Add release.yml for changelog generation
Browse files Browse the repository at this point in the history
- Added a new `release.yml` file to the `.github` directory.
- Configures the changelog generation for releases.
- Specifies labels to exclude from the changelog, such as `ignore-for-release` and contributions from `dependabot`.
- Categorizes the changelog into several sections
  • Loading branch information
VaclavElias committed Dec 16, 2024
1 parent ec5082f commit 8ce9f30
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# .github/release.yml

changelog:
exclude:
labels:
- ignore-for-release
authors:
- dependabot
categories:
- title: 💥 Breaking Changes
labels:
- breaking-change
- title: 🎉 New Features
labels:
- enhancement
- new-feature
- title: 🚀 Performance
labels:
- performance
- title: 🧠 Fiddling
labels:
- fiddling
- title: 🎮 Demos App
labels:
- demos
- title: 📄 Documentation
labels:
- documentation
- title: 💪 Other Changes
labels:
- "*"

0 comments on commit 8ce9f30

Please sign in to comment.