We already have the PR number from rustc-perf, so all you need to do is call out to the GitHub API at the appropriate part of the triage report generator. It should be added after the first part of msg:
|
pr = res['b']['pr'] |
|
start = res['a']['commit'] |
|
end = res['b']['commit'] |
|
|
|
msg = f'[#{pr}]({gh_link(pr)})' |
We already have the PR number from
rustc-perf, so all you need to do is call out to the GitHub API at the appropriate part of the triage report generator. It should be added after the first part ofmsg:rustc-perf/triage/weekly_report.py
Lines 180 to 184 in 6c66c38