fix(ci): raise the open-PR listing limit so the sync-PR guard sees every open PR

This commit is contained in:
mateo-berri 2026-08-25 13:42:28 -07:00
parent 6373ea090e
commit 56c2cceeaa

View file

@ -25,7 +25,7 @@ jobs:
- name: Look for an already-open sync PR
id: existing
run: |
open_pr="$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --json headRefName \
open_pr="$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --limit 1000 --json headRefName \
--jq '[.[].headRefName | select(startswith("litellm_together_registry_sync_"))] | first // empty')"
echo "open_pr=$open_pr" >> "$GITHUB_OUTPUT"
if [ -n "$open_pr" ]; then