Skip to content

Commit 7937dba

Browse files
authored
Update make_issues with new repo URL (#44)
1 parent 6c08449 commit 7937dba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/make_issues.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def run(input_path: str | Path):
7474
# Avoid GitHub rate limits
7575
time.sleep(2)
7676
needle = f"Commit {sha}"
77-
cmd = f'gh search issues --repo rhshadrach/asv-runner "{needle}"'
77+
cmd = f'gh search issues --repo pandas-dev/asv-runner "{needle}"'
7878
result = execute(cmd)
7979
if result != "":
8080
continue
@@ -97,7 +97,7 @@ def run(input_path: str | Path):
9797
for _, regression in regressions.iterrows():
9898
benchmark = regression["name"]
9999
params = regression["params"]
100-
base_url = "https://rhshadrach.github.io/asv-runner/#"
100+
base_url = "https://pandas-dev.github.io/asv-runner/#"
101101
url = f"{base_url}{benchmark}"
102102
abs_change = time_to_str(regression["abs_change"])
103103
severity = f"{regression['pct_change']:0.3%} ({abs_change})"
@@ -115,7 +115,7 @@ def run(input_path: str | Path):
115115

116116
cmd = (
117117
f"gh issue create"
118-
rf" --repo rhshadrach/asv-runner"
118+
rf" --repo pandas-dev/asv-runner"
119119
rf' --title "{title}"'
120120
rf' --body "{body}"'
121121
)

0 commit comments

Comments
 (0)