This is an automated email from the ASF dual-hosted git repository.

wu-sheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nodejs.git


The following commit(s) were added to refs/heads/master by this push:
     new 89c934c  fix(release): GitHub release title is just the version (e.g. 
0.9.0) (#137)
89c934c is described below

commit 89c934c03d0c0623a8beaacf75f7b578a95da604
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Fri Jun 26 08:57:13 2026 +0800

    fix(release): GitHub release title is just the version (e.g. 0.9.0) (#137)
    
    The finalize script titled the GitHub release "Apache SkyWalking NodeJS 
<v>";
    use just "<v>" to match the convention (the tag already carries the 
project).
    Also update the suggestion echoed by release.sh.
---
 scripts/release-finalize.sh | 2 +-
 scripts/release.sh          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/release-finalize.sh b/scripts/release-finalize.sh
index 7cef472..82da6da 100755
--- a/scripts/release-finalize.sh
+++ b/scripts/release-finalize.sh
@@ -206,7 +206,7 @@ else
     PREV_TAG=$(cd "${PROJECT_DIR}" && git tag --list 'v*' 
--sort=-version:refname | grep -vx "${TAG}" | head -1)
     if confirm "Create GitHub release ${TAG} (auto-notes since 
${PREV_TAG:-<none>}) and attach the artifacts?"; then
         gh release create "${TAG}" --repo "${GH_REPO}" \
-            --title "Apache SkyWalking NodeJS ${RELEASE_VERSION}" \
+            --title "${RELEASE_VERSION}" \
             --generate-notes ${PREV_TAG:+--notes-start-tag "${PREV_TAG}"} 
--latest \
             "${ART_DIR}/${SRC_TGZ}" "${ART_DIR}/${SRC_TGZ}.asc" 
"${ART_DIR}/${SRC_TGZ}.sha512"
         echo "GitHub release created."
diff --git a/scripts/release.sh b/scripts/release.sh
index 56956dc..54e4436 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -433,7 +433,7 @@ echo ""
 echo "Next steps:"
 echo "  1. Draft the GitHub release notes (auto-generated; CHANGELOG.md is a 
stub):"
 echo "       gh release create ${TAG} --draft --generate-notes --verify-tag \\"
-echo "         --notes-start-tag <previous tag> --title \"Apache SkyWalking 
NodeJS ${RELEASE_VERSION}\""
+echo "         --notes-start-tag <previous tag> --title \"${RELEASE_VERSION}\""
 echo "  2. Send the [VOTE] email above to [email protected] (>=72h)."
 echo "  3. After the vote passes:"
 echo "       - run:  bash scripts/release-finalize.sh"

Reply via email to