Skip to content

Commit

Permalink
add release drafter config (#107)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Huo <benjamin@kubesphere.io>
  • Loading branch information
benjaminhuo authored Aug 24, 2023
1 parent 3e137a2 commit d680adc
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
template: |
# What's Changed
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
categories:
- title: '💥 Breaking'
label: 'type: breaking'
- title: '✨ New'
label: 'type: feature'
- title: '🐛 Bug Fixes'
label: 'type: bug'
- title: '🏗️ Maintenance'
label: 'type: maintenance'
- title: '🔒 Security'
label: 'type: security'
- title: '👷 CI/CD'
label: 'type: cicd'
- title: '📝 Documentation'
label: 'type: docs'
- title: 'Other changes'
- title: '🏷️ Dependency Updates'
label: 'type: dependencies'
collapse-after: 5

version-resolver:
major:
labels:
- 'type: breaking'
minor:
labels:
- 'type: feature'
patch:
labels:
- 'type: bug'
- 'type: maintenance'
- 'type: docs'
- 'type: dependencies'
- 'type: cicd'

exclude-labels:
- 'skip-changelog'

0 comments on commit d680adc

Please sign in to comment.