From 1a183be065b3ef096978162a85c501a7c5f08772 Mon Sep 17 00:00:00 2001 From: Mike Rae <73435638+mikerae@users.noreply.github.com> Date: Thu, 11 Jan 2024 12:55:09 +0000 Subject: [PATCH] Create release-drafter.yml --- .github/workflows/release-drafter.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release-drafter.yml diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..cd460e0 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,19 @@ +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 ${{ branches }} from above. + - uses: release-drafter/release-drafter@v5 + with: + # Specify config name to use, relative to .github/. + config-name: release-drafter.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}