Skip to content

Commit

Permalink
build(reset_stable.yml): rename branch to 'litellm_stable_release_bra…
Browse files Browse the repository at this point in the history
…nch'

use this branch to trigger load test / other workflows for stable releases
  • Loading branch information
krrishdholakia committed Dec 20, 2024
1 parent 19e67b8 commit 741500e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/reset_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Reset litellm_stable_test_1 branch to the release commit
- name: Reset litellm_stable_release_branch branch to the release commit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand All @@ -24,17 +24,17 @@ jobs:
# Fetch all branches and tags
git fetch --all
# Check if the litellm_stable_test_1 branch exists
if git show-ref --verify --quiet refs/remotes/origin/litellm_stable_test_1; then
echo "litellm_stable_test_1 branch exists."
git checkout litellm_stable_test_1
# Check if the litellm_stable_release_branch branch exists
if git show-ref --verify --quiet refs/remotes/origin/litellm_stable_release_branch; then
echo "litellm_stable_release_branch branch exists."
git checkout litellm_stable_release_branch
else
echo "litellm_stable_test_1 branch does not exist. Creating it."
git checkout -b litellm_stable_test_1
echo "litellm_stable_release_branch branch does not exist. Creating it."
git checkout -b litellm_stable_release_branch
fi
# Reset litellm_stable_test_1 branch to the release commit
# Reset litellm_stable_release_branch branch to the release commit
git reset --hard $GITHUB_SHA
# Push the updated litellm_stable_test_1 branch
git push origin litellm_stable_test_1 --force
# Push the updated litellm_stable_release_branch branch
git push origin litellm_stable_release_branch --force

0 comments on commit 741500e

Please sign in to comment.