Actions additions

This commit is contained in:
btowles
2021-08-16 02:45:13 +00:00
parent 392ef6ccc0
commit 01db497a04
3 changed files with 91 additions and 0 deletions

47
.github/release-drafter.yml vendored Normal file
View File

@@ -0,0 +1,47 @@
---
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
template: |
## Changes
$CHANGES
categories:
- title: 'Breaking'
labels:
- 'breaking'
- title: 'New'
labels:
- 'feature'
- title: 'Bug Fixes'
labels:
- 'bug'
- title: 'Maintenance'
labels:
- 'maintenance'
- 'cleanup'
- title: 'Documentation'
labels:
- 'docs'
- title: 'Dependency Updates'
labels:
- 'dependencies'
version-resolver:
major:
labels:
- 'breaking'
minor:
labels:
- 'feature'
patch:
labels:
- 'bug'
- 'maintenance'
- 'docs'
- 'dependencies'
- 'security'
default: patch
exclude-labels:
- 'skip-changelog'