From 507353404c19f14c867db7341c94b06a954d6845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?JC=20Gr=C3=BCnhage?= Date: Thu, 13 Mar 2025 00:54:43 +0100 Subject: [PATCH] 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. --- .github/workflows/_create-release-pr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/_create-release-pr.yml b/.github/workflows/_create-release-pr.yml index 62266d876e..9b1d1aa454 100644 --- a/.github/workflows/_create-release-pr.yml +++ b/.github/workflows/_create-release-pr.yml @@ -87,5 +87,6 @@ jobs: TITLE: ${{ steps.vars.outputs.title }} run: | gh pr create --title "${TITLE}" \ + --body "" \ --head "${RC_BRANCH}" \ --base "${RELEASE_BRANCH}"