From 066428924e27c28c33189687ac89b563912eef5a Mon Sep 17 00:00:00 2001 From: Justin Hayes <52832301+justinh-rahb@users.noreply.github.com> Date: Mon, 28 Aug 2023 12:57:59 -0400 Subject: [PATCH] Update dependabot-release.yml --- .github/workflows/dependabot-release.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dependabot-release.yml b/.github/workflows/dependabot-release.yml index 8422204..18cebf6 100644 --- a/.github/workflows/dependabot-release.yml +++ b/.github/workflows/dependabot-release.yml @@ -26,13 +26,8 @@ jobs: - name: Create Release id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: ncipollo/release-action@v1 with: - tag_name: ${{ steps.create_tag.outputs.new_tag }} - release_name: Release ${{ steps.create_tag.outputs.new_tag }} - body: | - Changes in this Release - ${{ github.event.pull_request.body }} - + body: "Changes in this Release\n${{ github.event.pull_request.body }}" + tag: ${{ steps.create_tag.outputs.new_tag }} + token: ${{ secrets.GITHUB_TOKEN }}