rmuir commented on issue #15421:
URL: https://github.com/apache/lucene/issues/15421#issuecomment-3539747304
@dweiss I'd like to throw out the built-in github functionality as another
alternative.
To create a release I typically do `gh release create "${GITHUB_REF_NAME}"
--generate-notes`.
This is the same as checking the "auto generate release notes" functionality
in the releases tab.
You can drive it based on a simple `release.yml` configuration file, which
is driven by PR labels. example file I like to use which groups changes into
two buckets only (so you get dependabot and non-dependabot groups):
```yaml
# .github/release.yml
changelog:
categories:
- title: 🏕 Changes
labels:
- '*'
exclude:
labels:
- dependencies
- title: 👒 Dependencies
labels:
- dependencies
```
https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]