-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: let automagic release note generation do more for us (#698)
* chore: add a template file for release notes
- Loading branch information
Ed
authored
Mar 2, 2023
1 parent
fd845e3
commit d054d62
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This file controls how the automagically generated | ||
# release notes get represented in the release-notes | ||
# template | ||
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes | ||
# .github/release.yml | ||
changelog: | ||
exclude: | ||
labels: | ||
- updatebot | ||
categories: | ||
- title: 🕵️ New Detections | ||
labels: | ||
- rules | ||
exclude: | ||
labels: | ||
- tuning | ||
- title: ⛅️️ New Policies | ||
labels: | ||
- policies | ||
exclude: | ||
labels: | ||
- tuning | ||
- title: 🔍️️ New Queries | ||
labels: | ||
- queries | ||
exclude: | ||
labels: | ||
- tuning | ||
- title: 🗓️️ Scheduled Rules | ||
labels: | ||
- scheduled_rules | ||
exclude: | ||
labels: | ||
- tuning | ||
- title: 🌯 New Packs and Pack Expansion | ||
labels: | ||
- packs | ||
exclude: | ||
labels: | ||
- tuning | ||
- title: 🐛 Bug Fixes and Tunes | ||
labels: | ||
- tuning | ||
- bug | ||
- title: 🏡 Miscellaneous | ||
labels: | ||
- '*' |