ci(release): rename the tag-classification job to prepare

Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
Kerry Lu 2026-09-11 14:47:57 -07:00
parent 9d91aff249
commit cdf8a8cab8

View file

@ -18,7 +18,7 @@ jobs:
# Stable and RC tags are gated on the Redis chaos load test; dev, nightly, alpha and beta
# tags are cut too often to spend a multi-minute chaos run on each one, and the weekly
# schedule already covers the default branch.
stable-release-gate:
prepare:
name: Validate inputs and decide whether this tag is gated
runs-on: ubuntu-latest
outputs:
@ -53,8 +53,8 @@ jobs:
redis-chaos-gate:
name: Redis Chaos E2E
needs: stable-release-gate
if: needs.stable-release-gate.outputs.gated == 'true'
needs: prepare
if: needs.prepare.outputs.gated == 'true'
permissions:
contents: read
uses: ./.github/workflows/test-e2e-redis-chaos.yml
@ -63,8 +63,8 @@ jobs:
release:
name: Create Release
needs: [stable-release-gate, redis-chaos-gate]
if: always() && needs.stable-release-gate.result == 'success' && (needs.redis-chaos-gate.result == 'success' || needs.redis-chaos-gate.result == 'skipped')
needs: [prepare, redis-chaos-gate]
if: always() && needs.prepare.result == 'success' && (needs.redis-chaos-gate.result == 'success' || needs.redis-chaos-gate.result == 'skipped')
runs-on: ubuntu-latest
permissions:
contents: write