Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci/make_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def run(input_path: str | Path):
# Avoid GitHub rate limits
time.sleep(2)
needle = f"Commit {sha}"
cmd = f'gh search issues --repo rhshadrach/asv-runner "{needle}"'
cmd = f'gh search issues --repo pandas-dev/asv-runner "{needle}"'
result = execute(cmd)
if result != "":
continue
Expand All @@ -97,7 +97,7 @@ def run(input_path: str | Path):
for _, regression in regressions.iterrows():
benchmark = regression["name"]
params = regression["params"]
base_url = "https://rhshadrach.github.io/asv-runner/#"
base_url = "https://pandas-dev.github.io/asv-runner/#"
url = f"{base_url}{benchmark}"
abs_change = time_to_str(regression["abs_change"])
severity = f"{regression['pct_change']:0.3%} ({abs_change})"
Expand All @@ -115,7 +115,7 @@ def run(input_path: str | Path):

cmd = (
f"gh issue create"
rf" --repo rhshadrach/asv-runner"
rf" --repo pandas-dev/asv-runner"
rf' --title "{title}"'
rf' --body "{body}"'
)
Expand Down
Loading