diff --git a/.github/workflows/plan-release.yml b/.github/workflows/plan-release.yml index cdd6aa2b..89869ed0 100644 --- a/.github/workflows/plan-release.yml +++ b/.github/workflows/plan-release.yml @@ -16,12 +16,12 @@ concurrency: jobs: is-this-a-release: - name: 'Is this a release?' + name: Is this a release? runs-on: ubuntu-latest outputs: is-release: ${{ steps.check-release.outputs.is-release }} steps: - - uses: kategengler/actions/release-plan/check-if-release@v0.0.4 + - uses: kategengler/actions/release-plan/check-if-release@v0.0.7 with: ref: 'main' id: check-release @@ -45,7 +45,8 @@ jobs: (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true) ) steps: - - uses: kategengler/actions/release-plan/prepare@v0.0.4 + - uses: kategengler/actions/release-plan/prepare@v0.0.7 + name: Run release-plan prepare with: ref: 'main' env: @@ -53,11 +54,12 @@ jobs: id: explanation - uses: peter-evans/create-pull-request@v7 + name: Create Prepare Release PR with: - commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'" + commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'" labels: 'internal' branch: release-preview - title: Prepare Release ${{ steps.explanation.outputs.new_version }} + title: Prepare Release ${{ steps.explanation.outputs.new-version }} body: | This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍