From 07847ba3f40b33a3f86395a79ec8bd226f2a6e03 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Fri, 10 Jun 2022 17:33:27 -0400 Subject: [PATCH] Use `steps.draft.outputs.body` --- .github/workflows/maven-cd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven-cd.yml b/.github/workflows/maven-cd.yml index 7941c03..b01c44b 100644 --- a/.github/workflows/maven-cd.yml +++ b/.github/workflows/maven-cd.yml @@ -26,6 +26,7 @@ jobs: - name: Release Drafter uses: release-drafter/release-drafter@v5 + id: draft if: steps.verify-ci-status.outputs.result == 'success' with: name: next @@ -35,11 +36,12 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Check interesting categories - uses: jenkins-infra/interesting-category-action@v1.1.0 + uses: jetersen/interesting-category-action@patch-1 # TODO https://github.com/jenkins-infra/interesting-category-action/pull/5 id: interesting-categories if: steps.verify-ci-status.outputs.result == 'success' with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + RELEASE_DRAFT_BODY: ${{ steps.draft.outputs.body }} release: runs-on: ubuntu-latest