Skip to content

Commit

Permalink
Add release drafter (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
morcuended committed Nov 30, 2023
1 parent 86aed16 commit 982f55c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
template: |
## Summary
...
## What's Changed since $PREVIOUS_TAG
$CHANGES
## Contributors
$CONTRIBUTORS
17 changes: 17 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main


jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 982f55c

Please sign in to comment.