Skip to content

Commit 587251c

Browse files
committed
Merge remote-tracking branch 'origin/simple-fees-token-service' into simple-fees-token-service
2 parents d1544e2 + 2bc94cc commit 587251c

File tree

179 files changed

+2975
-1906
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+2975
-1906
lines changed

.github/workflows/docs/workflow-manifest.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
| zxcron-auto-namespaces-delete.yaml | Delete automation Latitude Namespaces | | |
99
| node-zxcron-main-fsts-regression.yaml | ZXCron: [Node] Main JRS Tests | | |
1010
| node-zxcron-release-fsts-regression.yaml | ZXCron: [Node] Release JRS Tests | | |
11-
| platform-zxcron-main-jrs-regression.yaml | ZXCron: [Platform] Main JRS Regression | | |
1211
| platform-zxcron-release-jrs-regression.yaml | ZXCron: [Platform] Release JRS Regression | | |
1312
| | | | |
1413
| # REUSABLE | | | |
@@ -71,14 +70,6 @@
7170
| node-flow-fsts-daily-interval-05.yaml | ZXF: [Node] FSTS Daily (Interval: 5) | | |
7271
| node-flow-fsts-daily-interval-06.yaml | ZXF: [Node] FSTS Daily (Interval: 6) | | |
7372
| node-flow-fsts-daily-regression.yaml | Node: FSTS Daily Regression | | |
74-
| platform-flow-jrs-custom-regression.yaml | Platform: JRS Custom Regression | | |
75-
| platform-flow-jrs-daily-regression.yaml | Platform: JRS Daily Regression | | |
76-
| platform-zxf-jrs-daily-interval-01.yaml | ZXF: [Platform] JRS Daily (Interval: 1) | | |
77-
| platform-zxf-jrs-daily-interval-02.yaml | ZXF: [Platform] JRS Daily (Interval: 2) | | |
78-
| platform-zxf-jrs-daily-interval-03.yaml | ZXF: [Platform] JRS Daily (Interval: 3) | | |
79-
| platform-zxf-jrs-daily-interval-04.yaml | ZXF: [Platform] JRS Daily (Interval: 4) | | |
80-
| platform-zxf-jrs-daily-interval-05.yaml | ZXF: [Platform] JRS Daily (Interval: 5) | | |
81-
| platform-zxf-jrs-daily-interval-06.yaml | ZXF: [Platform] JRS Daily (Interval: 6) | | |
8273
| | | | |
8374
| # QOL | | | |
8475
| zxf-update-gs-state-variable.yaml | ZXF: Update GS_STATE Variable | | |

.github/workflows/flow-generate-release-notes.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
runs-on: hiero-network-node-linux-medium
2525
outputs:
2626
release-identifier: ${{ steps.validate.outputs.release-identifier }}
27+
skip-generate-release-notes: ${{ steps.skip-release-candidate.skip-generate-release-notes }}
2728
steps:
2829
- name: Harden Runner
2930
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
@@ -56,11 +57,15 @@ jobs:
5657
echo "Validated Input: ${cleaned}" >> "${GITHUB_STEP_SUMMARY}"
5758
5859
- name: Skip Autogen Release Notes on Release Candidate Tag
60+
id: skip-release-candidate
5961
run: |
6062
tag="v${{ steps.validate.outputs.release-identifier }}"
6163
if [[ "${{ github.event_name }}" == "push" && ! "$tag" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
6264
echo "Skipping prerelease tag: $tag" | tee -a "${GITHUB_STEP_SUMMARY}"
63-
exit 1
65+
echo "skip-generate-release-notes=true" >> "${GITHUB_OUTPUT}"
66+
else
67+
echo "Not a prerelease tag: ${tag}" | tee -a "${GITHUB_STEP_SUMMARY}"
68+
echo "skip-generate-release-notes=false" >> "${GITHUB_OUTPUT}"
6469
fi
6570
6671
- name: Checkout Code
@@ -87,6 +92,7 @@ jobs:
8792
name: Create Fixes and Feats Release Notes
8893
needs: validate-input-version
8994
runs-on: hiero-network-node-linux-medium
95+
if: ${{ needs.validate-input-version.outputs.skip-generate-release-notes == 'true' }}
9096
steps:
9197
- name: Harden Runner
9298
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
@@ -116,6 +122,7 @@ jobs:
116122
name: Create Full Release Notes
117123
needs: validate-input-version
118124
runs-on: hiero-network-node-linux-medium
125+
if: ${{ needs.validate-input-version.outputs.skip-generate-release-notes == 'true' }}
119126
steps:
120127
- name: Harden Runner
121128
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
@@ -153,6 +160,7 @@ jobs:
153160
name: Full Commit History
154161
needs: validate-input-version
155162
runs-on: hiero-network-node-linux-medium
163+
if: ${{ needs.validate-input-version.outputs.skip-generate-release-notes == 'true' }}
156164
steps:
157165
- name: Harden Runner
158166
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0

.github/workflows/platform-flow-jrs-custom-regression.yaml

Lines changed: 0 additions & 84 deletions
This file was deleted.

.github/workflows/platform-flow-jrs-daily-regression.yaml

Lines changed: 0 additions & 96 deletions
This file was deleted.

.github/workflows/platform-zxcron-main-jrs-regression.yaml

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)