Skip to content

Commit

Permalink
Update scan_and_suggest.py
Browse files Browse the repository at this point in the history
Reduce number of pages to check
  • Loading branch information
DecimalTurn authored Sep 4, 2024
1 parent 068ed81 commit df3759b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scan_and_suggest.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def main():
query = 'VBA'
query = 'VBA in:name,description'
per_page = 50 # Number of repos to fetch per page
total_pages = 5 # Number of pages to check (you can adjust this value)
total_pages = 3 # Number of pages to check

for page in range(1, total_pages + 1):
print(f"Fetching page {page}...")
Expand Down

0 comments on commit df3759b

Please sign in to comment.