This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pjfanning-patch-2 in repository https://gitbox.apache.org/repos/asf/pekko.git
commit 40488706994b779dbc73c9258f35c6c5b2db653d Author: PJ Fanning <[email protected]> AuthorDate: Fri Feb 27 20:27:02 2026 +0100 Fix branch reference in stage-release-candidate.yml Updated the branch reference in the release candidate workflow to use the dynamic branch variable. --- .github/workflows/stage-release-candidate.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stage-release-candidate.yml b/.github/workflows/stage-release-candidate.yml index bd29b10714..ae005613d6 100644 --- a/.github/workflows/stage-release-candidate.yml +++ b/.github/workflows/stage-release-candidate.yml @@ -176,8 +176,14 @@ jobs: export MODULE="Pekko (Core)" export VERSION=$(echo $REF | sed -e "s/.\(.*\)-.*/\\1/") export RC_VERSION=$(echo $REF | tail -c +2) + if [[ "$VERSION" =~ ^1\.([0-9]+)\.[0-9]+$ ]]; then + export BRANCH="1.${BASH_REMATCH[1]}.x" + else + export BRANCH="main" + fi echo "VERSION=$VERSION" echo "RC_VERSION=$RC_VERSION" + echo "BRANCH=$BRANCH" export DISCUSS=$(curl 'https://lists.apache.org/api/stats.lua?list=dev&domain=pekko.apache.org' | jq ".emails.[] | .subject, .mid" | grep -A1 "$MODULE $VERSION" | tail -1 | tr -d \") echo "DISCUSS=$DISCUSS" @@ -234,7 +240,7 @@ jobs: The VOTE will pass if we have more positive votes than negative votes and there must be a minimum of 3 approvals from Pekko PMC members. Anyone voting in favour of the release, could you please provide a list of the checks you have done? - The vote will be left open until [VOTE_ENDS_UTC]. + The vote will be left open for 72hrs. [ ] +1 approve [ ] +0 no opinion @@ -254,7 +260,7 @@ jobs: To compile from the source, please refer to: - https://github.com/apache/pekko/blob/main/README.md#building-from-source + https://github.com/apache/pekko/blob/$BRANCH/README.md#building-from-source To verify the binary build, please refer to: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
