From e15ca83bd5690dc89a1b43775e0221a94209de63 Mon Sep 17 00:00:00 2001 From: cucadmuh <49571317+cucadmuh@users.noreply.github.com> Date: Wed, 29 Apr 2026 11:13:17 +0300 Subject: [PATCH] ci(release): unify GitHub release title format across channels (#359) Use a single release title pattern (`Psysonic v`) for both RC and stable releases, while keeping prerelease/draft flags unchanged. --- .github/workflows/reusable-channel-publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/reusable-channel-publish.yml b/.github/workflows/reusable-channel-publish.yml index 67a0785d..cb48313e 100644 --- a/.github/workflows/reusable-channel-publish.yml +++ b/.github/workflows/reusable-channel-publish.yml @@ -107,7 +107,6 @@ jobs: CHANGELOG_BODY: ${{ steps.changelog.outputs.body }} IS_PRERELEASE: ${{ inputs.prerelease }} IS_DRAFT: ${{ inputs.draft_release }} - CHANNEL: ${{ inputs.channel }} with: script: | const tag = process.env.RELEASE_TAG; @@ -115,9 +114,7 @@ jobs: const prerelease = process.env.IS_PRERELEASE === "true"; const draft = process.env.IS_DRAFT === "true"; const version = process.env.PACKAGE_VERSION; - const channel = process.env.CHANNEL; - const titleSuffix = prerelease ? ` RC (${channel})` : ""; - const name = `Psysonic v${version}${titleSuffix}`; + const name = `Psysonic v${version}`; try { const { data } = await github.rest.repos.getReleaseByTag({ owner: context.repo.owner,