### What - Add changelog formatting file to automate pull request categorization in release notes* - Add action to trigger preview releases - Remove unused staging deployment action **Add changelog formatting file to automate pull request categorization in release notes** In order for this work, we need to be more strict about our labels usage. More specifically, we need to add one of the four different labels noted in the `release.yml` file. The labels should be self-explanatory. If your PR introduces both features and bugs, you should choose the label based on importance of the changes.
21 lines
365 B
YAML
21 lines
365 B
YAML
changelog:
|
|
exclude:
|
|
authors:
|
|
- github-actions
|
|
categories:
|
|
- title: Features
|
|
labels:
|
|
- "type: feature"
|
|
- title: Bugs
|
|
labels:
|
|
- "type: bug"
|
|
- title: Documentation
|
|
labels:
|
|
- "type: docs"
|
|
- title: Chores
|
|
labels:
|
|
- "type: chore"
|
|
- title: Other Changes
|
|
labels:
|
|
- "*"
|