Skip to content

Commit

Permalink
Merge pull request #4 from imponeer/ci/release-drafter
Browse files Browse the repository at this point in the history
Added release drafter
  • Loading branch information
MekDrop authored Mar 26, 2022
2 parents 1eecb80 + 75b2f02 commit fefb3bd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: Features
labels:
- 'enhancement'
- title: Bug Fixes
labels:
- 'bug'
- title: Maintenance
labels:
- 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## What's Changed
$CHANGES
14 changes: 14 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Release Drafter

on:
push:
branches:
- 'main'

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fefb3bd

Please sign in to comment.