Skip to content

Commit

Permalink
feat: add release drafter configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrildewit committed Jan 20, 2024
1 parent 30c0843 commit f454aca
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
latest: 'true'

categories:
- title: 'Features'
labels:
- 'feature'
- 'enhancement'
- title: 'Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
autolabeler:
- label: 'bug'
branch:
- '/bugfix\/.+/'
title:
- '/fix/i'
- '/bugfix/i'
- label: 'enhancement'
branch:
- '/feature\/.+/'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.

template: |
## Changes
$CHANGES

0 comments on commit f454aca

Please sign in to comment.