chore: update release notes config and tagging (#6677)

* chore: update release notes config and tagging

* chore: add emoji and make cases consistent
This commit is contained in:
Maribeth Bottorff
2022-12-05 15:53:26 -08:00
committed by GitHub
parent 0ea319c4c3
commit fd92cd7824
2 changed files with 17 additions and 7 deletions

16
.github/release.yml vendored
View File

@@ -4,23 +4,29 @@ changelog:
exclude:
labels:
- ignore-for-release
- "PR: chore"
authors:
- dependabot
categories:
- title: Breaking Changes 🛠
- title: Breaking changes 🛠
labels:
- breaking change
- title: New Features
- title: Deprecations 🧹 - APIs that may be removed in future releases
labels:
- deprecation
- title: New features ✨
labels:
- "PR: feature"
- title: Bug fixes
- title: Bug fixes 🐛
labels:
- "PR: fix"
- title: Cleanup ♻️
labels:
- "PR: chore"
- "PR: docs"
- "PR: refactor"
- title: Other Changes
- title: Reverted changes
labels:
- "PR: revert"
- title: Other changes
labels:
- "*"

View File

@@ -1,6 +1,8 @@
on:
pull_request_target:
types: [ opened, edited ]
types:
- opened
- edited
name: conventional-release-labels
jobs:
label:
@@ -8,5 +10,7 @@ jobs:
steps:
- uses: bcoe/conventional-release-labels@v1
with:
type_labels: '{"feat": "PR: feature", "fix": "PR: fix", "breaking": "breaking change", "chore": "PR: chore", "docs": "PR: docs", "refactor": "PR: refactor"}'
type_labels: '{"feat": "PR: feature", "fix": "PR: fix", "breaking": "breaking
change", "chore": "PR: chore", "docs": "PR: docs", "refactor": "PR:
refactor", "revert": "PR: revert", "deprecate": "deprecation"}'
ignored_types: '[]'