Skip to content

Commit

Permalink
add release drafter
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <olamy@apache.org>
  • Loading branch information
olamy committed Jul 16, 2020
1 parent 04a3179 commit 1655770
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/release-drafter.yml
@@ -0,0 +1,57 @@
# Configuration for Release Drafter: https://github.com/toolmantim/release-drafter
name-template: $NEXT_MINOR_VERSION
tag-template: $NEXT_MINOR_VERSION
version-template: $MAJOR.$MINOR.$PATCH

# Emoji reference: https://gitmoji.carloscuesta.me/
categories:
- title: ":boom: Breaking changes"
labels:
- breaking
- title: 🚨 Removed
label: removed
- title: ":tada: Major features and improvements"
labels:
- major-enhancement
- major-rfe
- title: πŸ› Major bug fixes
labels:
- major-bug
- title: ⚠️ Deprecated
label: deprecated
- title: πŸš€ New features and improvements
labels:
- enhancement
- feature
- rfe
- title: πŸ› Bug Fixes
labels:
- bug
- fix
- bugfix
- regression
- title: ":construction_worker: Changes for plugin developers"
labels:
- developer
# Default label used by Dependabot
- title: πŸ“¦ Dependency updates
label: dependencies
- title: πŸ“ Documentation updates
label: documentation
- title: πŸ‘» Maintenance
labels:
- chore
- internal
- title: 🚦 Tests
labels:
- test
- tests
exclude-labels:
- reverted
- no-changelog
- skip-changelog
- invalid

template: |
<!-- Optional: add a release summary here -->
$CHANGES
12 changes: 12 additions & 0 deletions .github/workflows/release-drafter.yml
@@ -0,0 +1,12 @@
name: Release Drafter
on:
push:
branches:
- master
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5.11.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1655770

Please sign in to comment.