mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
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:
parent
55c94985e5
commit
db362f5ba6
2 changed files with 14 additions and 2 deletions
8
.github/workflows/extension_bump.yml
vendored
8
.github/workflows/extension_bump.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue