From 56c2cceeaa394ce6439cafb07b84666aea7fd715 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Tue, 25 Aug 2026 13:42:28 -0700 Subject: [PATCH] fix(ci): raise the open-PR listing limit so the sync-PR guard sees every open PR --- .github/workflows/sync-together-ai-models.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-together-ai-models.yml b/.github/workflows/sync-together-ai-models.yml index eca9ad7c968..f1a8a841d0f 100644 --- a/.github/workflows/sync-together-ai-models.yml +++ b/.github/workflows/sync-together-ai-models.yml @@ -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