Add Github automation

This commit is contained in:
Greg Hellings
2022-06-01 14:51:48 -05:00
parent 84833b79a1
commit 17394dffa2
4 changed files with 84 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
name: Release Drafter
on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main
- 'releases/**'
- 'stable/**'
jobs:
update_release_draft:
runs-on: ubuntu-20.04
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 }}