Skip to content

Commit

Permalink
🔧 Use release-drafter
Browse files Browse the repository at this point in the history
  • Loading branch information
wwilsman committed Sep 25, 2020
1 parent f56191c commit 4fd9d6e
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '💥 Breaking Changes'
labels:
- breaking
- title: '✨ Enhancements'
labels:
- feature
- enhancement
- title: '🐛 Bug Fixes'
labels:
- fix
- bugfix
- bug
- title: '🏗 Maintenance'
labels:
- chore
change-title-escapes: '\<*_&#@'
version-resolver:
major:
labels:
- breaking
minor:
labels:
- feature
- enhancement
default: patch
template: '$CHANGES'
10 changes: 10 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Changelog
on:
push: [master]
jobs:
update_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4fd9d6e

Please sign in to comment.