ci(guard): point external contributors to litellm_internal_staging (#27510)

The Guard main branch workflow tells fork-based contributors to retarget PRs
against 'litellm_oss_branch', but that branch does not exist in the repo
(GET /git/ref/heads/litellm_oss_branch returns 404). External PRs are now
opened against 'litellm_internal_staging' (matches the branch the workflow
itself already accepts as a valid source). Update both error messages to
reference an existing branch so the guard's instructions are actionable.
This commit is contained in:
Tai An 2026-05-09 21:16:32 -07:00
parent e182a5e0ba
commit c40523f827

View file

@ -31,12 +31,12 @@ jobs:
echo "PR head repo: $HEAD_REPO"
echo "PR head branch: $HEAD_REF"
if [ "$HEAD_REPO" != "$BASE_REPO" ]; then
echo "::error::PRs to main must originate from the canonical repository ($BASE_REPO), not a fork ($HEAD_REPO). External contributors should open PRs against the 'litellm_oss_branch' branch instead."
echo "::error::PRs to main must originate from the canonical repository ($BASE_REPO), not a fork ($HEAD_REPO). External contributors should open PRs against the 'litellm_internal_staging' branch instead."
exit 1
fi
if [ "$HEAD_REF" = "litellm_internal_staging" ] || [[ "$HEAD_REF" == litellm_hotfix_?* ]]; then
echo "Allowed source branch."
exit 0
fi
echo "::error::PRs to main must originate from 'litellm_internal_staging' or a 'litellm_hotfix_*' branch. Got: '$HEAD_REF'. If this is a contribution, retarget the PR against 'litellm_oss_branch' instead."
echo "::error::PRs to main must originate from 'litellm_internal_staging' or a 'litellm_hotfix_*' branch. Got: '$HEAD_REF'. If this is a contribution, retarget the PR against 'litellm_internal_staging' instead."
exit 1