mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Fix a search filter in top-ranking issues script (#44468)
Release Notes: - N/A
This commit is contained in:
parent
9d49c1ffda
commit
2b02b60317
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue