1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-20 13:57:23 +03:00

Add release-drafter (#2055)

* add release-drafter

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* add release-drafter

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>

* fix token

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-02-02 09:32:41 +02:00 committed by GitHub
parent 1599ee4f6a
commit f8412eaf13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

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

@ -0,0 +1,14 @@
categories:
- title: '🚀 Features'
labels:
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
template: |
## Changes since $PREVIOUS_TAG
$CHANGES

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

@ -0,0 +1,19 @@
name: Release Drafter
on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
with:
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# config-name: my-config.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}