Fix a search filter in top-ranking issues script (#44468)

Release Notes:

- N/A
This commit is contained in:
Lena 2025-12-09 10:44:30 +01:00 committed by GitHub
parent 9d49c1ffda
commit 2b02b60317
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -85,7 +85,7 @@ def get_section_to_issues(
]
if start_date:
query_parts.append(f"created:<={start_date.strftime('%Y-%m-%d')}")
query_parts.append(f"created:>={start_date.strftime('%Y-%m-%d')}")
query = " ".join(query_parts)
url = f"{GITHUB_API_BASE_URL}/search/issues"