Skip to content
This repository was archived by the owner on Apr 17, 2019. It is now read-only.

Commit 1e89273

Browse files
committed
submit-queue: update the 'details' link in github
We were sending people to the front page of the submit-queue. But then we changed the front page to be the queue instead of the 'all PRs'. While this link it's particularly useful, at least seeing your PR most of the time is better than not...
1 parent 2b638da commit 1e89273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mungegithub/mungers/submit-queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ func (sq *SubmitQueue) SetMergeStatus(obj *github.MungeObject, reason string) {
677677
status := obj.GetStatus(sqContext)
678678
if status == nil || *status.Description != reason {
679679
state := reasonToState(reason)
680-
url := fmt.Sprintf("http://submit-queue.k8s.io/#?prDisplay=%d&historyDisplay=%d", *obj.Issue.Number, *obj.Issue.Number)
680+
url := fmt.Sprintf("http://submit-queue.k8s.io/#/prs/?prDisplay=%d&historyDisplay=%d", *obj.Issue.Number, *obj.Issue.Number)
681681
_ = obj.SetStatus(state, url, reason, sqContext)
682682
}
683683

0 commit comments

Comments
 (0)