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

Release Notes:

- N/A (https://tenor.com/view/ironic-star-wars-chode-gif-5274592)
This commit is contained in:
Finn Evers 2026-03-13 19:42:56 +01:00 committed by GitHub
parent 55c94985e5
commit db362f5ba6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 2 deletions

View file

@ -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

View file

@ -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