Skip to content

Commit 9af64fb

Browse files
committed
chore: Decrease minimum repository catalog size threshold from 7000 to 4000 in refresh workflow.
1 parent f8f817c commit 9af64fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/refresh-repo-catalog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
run: |
3636
REPO_COUNT=$(grep -c '"owner"' public/data/top-repos.json)
3737
echo "Found $REPO_COUNT repositories."
38-
if [ "$REPO_COUNT" -lt 7000 ]; then
39-
echo "Error: Catalog size ($REPO_COUNT) is below the minimum threshold (7000)."
38+
if [ "$REPO_COUNT" -lt 4000 ]; then
39+
echo "Error: Catalog size ($REPO_COUNT) is below the minimum threshold (4000)."
4040
exit 1
4141
fi
4242

0 commit comments

Comments
 (0)