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

30
.github/release.yml vendored
View File

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