Add release drafter files

This commit is contained in:
Clémentine Urquizar 2021-04-08 19:21:27 +02:00
parent 5efe67f375
commit 6a128d4ec7
No known key found for this signature in database
GPG Key ID: D8E7CC7422E77E1A
2 changed files with 43 additions and 0 deletions

27
.github/release-draft-template.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name-template: 'Milli v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
exclude-labels:
- 'skip-changelog'
version-resolver:
minor:
labels:
- 'breaking-change'
default: patch
categories:
- title: 'Breaking changes ⚠️'
label: 'breaking-change'
template: |
## Changes
$CHANGES
Thanks again to $CONTRIBUTORS! 🎉
no-changes-template: 'Changes are coming soon 😎'
sort-direction: 'ascending'
replacers:
- search: '/(?:and )?@dependabot-preview(?:\[bot\])?,?/g'
replace: ''
- search: '/(?:and )?@bors(?:\[bot\])?,?/g'
replace: ''
- search: '/(?:and )?@meili-bot,?/g'
replace: ''

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

@ -0,0 +1,16 @@
name: Release Drafter
on:
push:
branches:
- main
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
with:
config-name: release-draft-template.yml
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_DRAFTER_TOKEN }}