fix: github release notes not working (#884)

so apparently you can't mix stuff like `labels` and `label` in YAML (f YAML)
if i try to create a release now (yes i can), it just won't generate the notes. this will fix it
This commit is contained in:
Adam Perkowski 2024-10-31 19:10:45 +01:00 committed by GitHub
parent 663992b15d
commit c7d7cd3891
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

32
.github/release.yml vendored
View File

@ -1,23 +1,35 @@
changelog:
categories:
- title: '🚀 Features'
label: 'enhancement'
labels:
- 'enhancement'
- title: '🐛 Bug Fixes'
label: 'bug'
labels:
- 'bug'
- title: '⚙️ Refactoring'
label: 'refactor'
labels:
- 'refactor'
- title: '🧩 UI/UX'
label: 'UI/UX'
labels:
- 'UI/UX'
- title: '📚 Documentation'
label: 'documentation'
labels:
- 'documentation'
- title: '🔒 Security'
label: 'security'
labels:
- 'security'
- title: '🧰 GitHub Actions'
label: 'github_actions'
labels:
- 'github_actions'
- title: '🦀 Rust'
label: 'rust'
labels:
- 'rust'
- title: '📃 Scripting'
label: 'script'
labels:
- 'script'
- title: 'Other Changes'
labels:
- "*"
exclude:
labels:
- 'skip-changelog'
- 'skip-changelog'