fix(ci): pass emtpy body when creating release PRs (#11203)

## Problem
#11061 changed release pr creation, and I missed that creating PRs using
`gh` in non-interactive environments *requires* `--body` instead of
defaulting to an empty body.

## Summary of changes
Explicitly set an empty body when creating release PRs.
This commit is contained in:
JC Grünhage
2025-03-13 00:54:43 +01:00
committed by GitHub
parent 48be4df3f3
commit 507353404c

View File

@@ -87,5 +87,6 @@ jobs:
TITLE: ${{ steps.vars.outputs.title }}
run: |
gh pr create --title "${TITLE}" \
--body "" \
--head "${RC_BRANCH}" \
--base "${RELEASE_BRANCH}"