mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-15 23:31:29 +00:00
ci(release): rename the tag-classification job to prepare
Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
parent
9d91aff249
commit
cdf8a8cab8
1 changed files with 5 additions and 5 deletions
10
.github/workflows/create-release.yml
vendored
10
.github/workflows/create-release.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue