Skip to content

Commit

Permalink
Enable Release Drafter for changelog automation (#57)
Browse files Browse the repository at this point in the history
* Create Release Drafter configuration

* Add GitHub Action for Release Drafter
  • Loading branch information
oleg-nenashev authored Apr 27, 2021
1 parent e0a0639 commit 00e4430
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
_extends: .github
tag-template: v$NEXT_PATCH_VERSION
12 changes: 12 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Release Drafter
on:
push:
branches:
- master
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 00e4430

Please sign in to comment.