ZXCron: Automatic Release Branching #91376
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# Copyright (C) 2023-2025 Hedera Hashgraph, LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
## | |
name: "ZXCron: Automatic Release Branching" | |
on: | |
schedule: | |
- cron: "*/10 * * * *" | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: write | |
env: | |
GITHUB_CLI_VERSION: 2.21.2 | |
YQ_CLI_VERSION: 4.30.8 | |
WORKFLOW_CONFIG_FILE: ".github/workflows/config/node-release.yaml" | |
RELEASE_BRANCH_CHECK_SCRIPT: ".github/workflows/support/scripts/release-branch-check.sh" | |
jobs: | |
check-trigger: | |
name: Check Trigger Conditions | |
runs-on: network-node-linux-small-scheduler | |
if: ${{ !github.event.workflow_dispatch.repository.fork }} | |
outputs: | |
triggered: ${{ steps.evaluate.outputs.triggered }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Read Trigger Time | |
id: time | |
uses: mikefarah/yq@8bf425b4d1344db7cd469a8d10a390876e0c77fd # v4.45.1 | |
with: | |
cmd: yq '.release.branching.execution.time' '${{ env.WORKFLOW_CONFIG_FILE }}' | |
- name: Evaluate Trigger | |
id: evaluate | |
env: | |
REQUESTED_TIME: ${{ steps.time.outputs.result }} | |
run: | | |
set -x | |
if [[ -z "${REQUESTED_TIME}" ]]; then | |
echo "::error file=${WORKFLOW_CONFIG_FILE},title=Configuration Error::The release branch execution time must be specified and may not be omitted." | |
exit 1 | |
fi | |
if ! date --date="${REQUESTED_TIME} today" +%s >/dev/null 2>&1; then | |
echo "::error file=${WORKFLOW_CONFIG_FILE},title=Configuration Error::The release branch execution time of '${REQUESTED_TIME}' is invalid." | |
exit 1 | |
fi | |
BEGIN_TRIGGER_EPOCH="$(date --date="${REQUESTED_TIME} today" +%s)" | |
END_TRIGGER_EPOCH="$(date --date="${REQUESTED_TIME} today +2 hours" +%s)" | |
CURRENT_EPOCH="$(date +%s)" | |
TRIGGERED="false" | |
[[ "${CURRENT_EPOCH}" -ge "${BEGIN_TRIGGER_EPOCH}" && "${CURRENT_EPOCH}" -le "${END_TRIGGER_EPOCH}" ]] && TRIGGERED="true" | |
echo "triggered=${TRIGGERED}" >> "${GITHUB_OUTPUT}" | |
check-branch: | |
name: Check Branching Conditions | |
runs-on: network-node-linux-small-scheduler | |
needs: | |
- check-trigger | |
outputs: | |
schedule-trigger: ${{ steps.branch-creation.outputs.schedule-trigger }} | |
branch-create: ${{ steps.branch-creation.outputs.branch-create }} | |
branch-name: ${{ steps.branch-creation.outputs.branch-name }} | |
tag-create: ${{ steps.branch-creation.outputs.tag-create }} | |
tag-name: ${{ steps.branch-creation.outputs.tag-name }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
if: ${{ needs.check-trigger.outputs.triggered == 'true' && !cancelled() }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Branch Creation Check | |
id: branch-creation | |
run: bash "${{ github.workspace }}/${{ env.RELEASE_BRANCH_CHECK_SCRIPT }}" | |
create-branch: | |
name: Create Release Branch | |
runs-on: network-node-linux-small-scheduler | |
needs: | |
- check-branch | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
if: ${{ needs.check-branch.outputs.branch-create == 'true' && !cancelled() }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
- name: Create Branch | |
id: branch | |
uses: peterjgrainger/action-create-branch@10c7d268152480ae859347db45dc69086cef1d9c # v3.0.0 | |
with: | |
branch: refs/heads/${{ needs.check-branch.outputs.branch-name }} | |
- name: Compute Commit Identifier | |
id: commit | |
run: echo "short-id=$(echo -n "${{ github.sha }}" | tr -d '[:space:]' | cut -c1-8)" >> "${GITHUB_OUTPUT}" | |
- name: Send Slack Notification | |
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0 | |
with: | |
webhook: ${{ secrets.SLACK_RELEASE_WEBHOOK }} | |
webhook-type: incoming-webhook | |
payload-templated: true | |
payload: | | |
{ | |
"attachments": [ | |
{ | |
"color": "#7647cd", | |
"blocks": [ | |
{ | |
"type": "header", | |
"text": { | |
"type": "plain_text", | |
"text": ":evergreen_tree: Hedera Services - Automatic Release Branching", | |
"emoji": true | |
} | |
}, | |
{ | |
"type": "section", | |
"fields": [ | |
{ | |
"type": "mrkdwn", | |
"text": "*Branch Name:*" | |
}, | |
{ | |
"type": "mrkdwn", | |
"text": "*Source Branch:*" | |
}, | |
{ | |
"type": "mrkdwn", | |
"text": "<${{ github.server_url }}/${{ github.repository }}/tree/${{ needs.check-branch.outputs.branch-name }}|${{ needs.check-branch.outputs.branch-name }}>" | |
}, | |
{ | |
"type": "mrkdwn", | |
"text": "<${{ github.server_url }}/${{ github.repository }}/tree/${{ github.ref_name }}|${{ github.ref_name }}>" | |
} | |
] | |
}, | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "*Source Commit*: \n<${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}|${{ steps.commit.outputs.short-id }}>" | |
} | |
}, | |
{ | |
"type": "divider" | |
}, | |
{ | |
"type": "context", | |
"elements": [ | |
{ | |
"type": "mrkdwn", | |
"text": ":watch: Initiated by scheduled repository event at date & time: `${{ needs.check-branch.outputs.schedule-trigger }} UTC`" | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
create-tag: | |
name: Create Release Tag | |
runs-on: network-node-linux-medium | |
needs: | |
- check-branch | |
- create-branch | |
if: ${{ needs.check-branch.outputs.tag-create == 'true' && needs.create-branch.result == 'success' && !cancelled() }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ needs.check-branch.outputs.branch-name }} | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | |
with: | |
distribution: temurin | |
java-version: 21.0.4 | |
- name: Install Semantic Version Tools | |
run: | | |
echo "::group::Download SemVer Binary" | |
sudo curl -L -o /usr/local/bin/semver https://raw.githubusercontent.com/fsaintjacques/semver-tool/master/src/semver | |
echo "::endgroup::" | |
echo "::group::Change SemVer Binary Permissions" | |
sudo chmod -v +x /usr/local/bin/semver | |
echo "::endgroup::" | |
echo "::group::Show SemVer Binary Version Info" | |
semver --version | |
echo "::endgroup::" | |
- name: Import GPG key for commit signoff | |
id: gpg_import | |
uses: step-security/ghaction-import-gpg@6c8fe4d0126a59d57c21f87c9ae5dd3451fa3cca # v6.1.0 | |
with: | |
gpg_private_key: ${{ secrets.PLATFORM_GPG_KEY_CONTENTS }} | |
passphrase: ${{ secrets.PLATFORM_GPG_KEY_PASSPHRASE }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
git_tag_gpgsign: true | |
git_config_global: true | |
- name: Calculate Version | |
id: version | |
run: | | |
VALID_VERSION="$(semver validate "${{ needs.check-branch.outputs.tag-name }}" | tr -d '[:space:]')" | |
if [[ "${VALID_VERSION}" != "valid" ]]; then | |
echo "::error title=Invalid Version::The supplied tag name (${{ needs.check-branch.outputs.tag-name }}) is not a valid semantic version number." | |
exit 1 | |
fi | |
REL_PART="$(semver get release "${{ needs.check-branch.outputs.tag-name }}")" | |
PRE_PART="$(semver get prerel "${{ needs.check-branch.outputs.tag-name }}")" | |
VERSION="${REL_PART}" | |
[[ -n "${PRE_PART}" ]] && VERSION="${VERSION}-${PRE_PART}" | |
echo "number=${VERSION}" >> "${GITHUB_OUTPUT}" | |
- name: Update Software Version | |
run: ./gradlew versionAsSpecified -PnewVersion=${{ steps.version.outputs.number }} | |
- name: Commit Version Changes | |
id: git-commit | |
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4 | |
with: | |
author_name: ${{ secrets.PLATFORM_GIT_USER_NAME }} | |
author_email: ${{ secrets.PLATFORM_GIT_USER_EMAIL }} | |
commit: --signoff --gpg-sign | |
tag: "v${{ steps.version.outputs.number }} -f -m '[Automated Release] Hedera Node v${{ steps.version.outputs.number }}'" | |
message: "[Automated Release] Hedera Node v${{ steps.version.outputs.number }}" | |
- name: Compute Commit Identifier | |
id: commit | |
run: | | |
echo "id=$(echo -n "${{ steps.git-commit.outputs.commit_long_sha }}" | tr -d '[:space:]')" >> "${GITHUB_OUTPUT}" | |
echo "short-id=$(echo -n "${{ steps.git-commit.outputs.commit_long_sha }}" | tr -d '[:space:]' | cut -c1-8)" >> "${GITHUB_OUTPUT}" | |
- name: Send Slack Notification | |
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0 | |
with: | |
webhook: ${{ secrets.SLACK_RELEASE_WEBHOOK }} | |
webhook-type: incoming-webhook | |
payload-templated: "true" | |
payload: | | |
{ | |
"attachments": [ | |
{ | |
"color": "#16bec7", | |
"blocks": [ | |
{ | |
"type": "header", | |
"text": { | |
"type": "plain_text", | |
"text": ":ideograph_advantage: Hedera Services - Automatic Release Tagging", | |
"emoji": true | |
} | |
}, | |
{ | |
"type": "section", | |
"fields": [ | |
{ | |
"type": "mrkdwn", | |
"text": "*Tag Name:*" | |
}, | |
{ | |
"type": "mrkdwn", | |
"text": "*Source Branch:*" | |
}, | |
{ | |
"type": "mrkdwn", | |
"text": "<${{ github.server_url }}/hashgraph/hedera-services/tree/v${{ steps.version.outputs.number }}|v${{ steps.version.outputs.number }}>" | |
}, | |
{ | |
"type": "mrkdwn", | |
"text": "<${{ github.server_url }}/hashgraph/hedera-services/tree/${{ needs.check-branch.outputs.branch-name }}|${{ needs.check-branch.outputs.branch-name }}>" | |
} | |
] | |
}, | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "*Source Commit*: \n<${{ github.server_url }}/${{ github.repository }}/commit/${{ steps.commit.outputs.id }}|${{ steps.commit.outputs.short-id }}>" | |
} | |
}, | |
{ | |
"type": "divider" | |
}, | |
{ | |
"type": "context", | |
"elements": [ | |
{ | |
"type": "mrkdwn", | |
"text": ":watch: Initiated by scheduled repository event at date & time: `${{ needs.check-branch.outputs.schedule-trigger }} UTC`" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |