extension_ci: Use proper PR description for main repository (#51519)

Finn Evers created

Release Notes:

- N/A (https://tenor.com/view/ironic-star-wars-chode-gif-5274592)

Change summary

.github/workflows/extension_bump.yml                | 8 +++++++-
tooling/xtask/src/tasks/workflows/extension_bump.rs | 8 +++++++-
2 files changed, 14 insertions(+), 2 deletions(-)

Detailed changes

.github/workflows/extension_bump.yml 🔗

@@ -121,7 +121,13 @@ jobs:
         else
             {
                 echo "title=${EXTENSION_ID}: Bump to v${NEW_VERSION}";
-                echo "body=This PR bumps the version of the ${EXTENSION_NAME} extension to v${NEW_VERSION}";
+                echo "body<<EOF";
+                echo "This PR bumps the version of the ${EXTENSION_NAME} extension to v${NEW_VERSION}.";
+                echo "";
+                echo "Release Notes:";
+                echo "";
+                echo "- N/A";
+                echo "EOF";
                 echo "branch_name=zed-zippy-${EXTENSION_ID}-autobump";
             } >> "$GITHUB_OUTPUT"
         fi

tooling/xtask/src/tasks/workflows/extension_bump.rs 🔗

@@ -332,7 +332,13 @@ fn bump_version(
         else
             {{
                 echo "title=${{EXTENSION_ID}}: Bump to v${{NEW_VERSION}}";
-                echo "body=This PR bumps the version of the ${{EXTENSION_NAME}} extension to v${{NEW_VERSION}}";
+                echo "body<<EOF";
+                echo "This PR bumps the version of the ${{EXTENSION_NAME}} extension to v${{NEW_VERSION}}.";
+                echo "";
+                echo "Release Notes:";
+                echo "";
+                echo "- N/A";
+                echo "EOF";
                 echo "branch_name=zed-zippy-${{EXTENSION_ID}}-autobump";
             }} >> "$GITHUB_OUTPUT"
         fi