Skip to content

Commit

Permalink
Enable Release Drafter (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored May 8, 2022
1 parent f018790 commit 74fc74c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc

_extends: .github
tag-template: jaxb-$NEXT_PATCH_VERSION
version-template: $MAJOR.$MINOR.$PATCH
16 changes: 16 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Automates creation of Release Drafts using Release Drafter
# More Info: https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc

on:
push:
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 74fc74c

Please sign in to comment.