We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdcbfb commit 987d527Copy full SHA for 987d527
lib/routes/actions/github.js
@@ -359,7 +359,9 @@ function doubleEncode (str) {
359
360
function createServerSelectionUrl (owner, gitInfo) {
361
return 'https://' + process.env.DOMAIN + '/' + owner + '/serverSelection/' +
362
- gitInfo.repo + '?branch=' + doubleEncode(gitInfo.branch) + '&commit=' + gitInfo.commit +
+ gitInfo.repo + '?branch=' + doubleEncode(gitInfo.branch) +
363
+ '&pr=' + gitInfo.number +
364
+ '&commit=' + gitInfo.commit +
365
'&message=' + doubleEncode(gitInfo.headCommit.message);
366
}
367
0 commit comments