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 ecfd775 commit 7831ba6Copy full SHA for 7831ba6
commit-stream.js
@@ -31,7 +31,7 @@ function commitStream (ghUser, ghProject) {
31
if (!commit.reviewers)
32
commit.reviewers = []
33
commit.reviewers.push({ name: m[1], email: m[2] })
34
- } else if (m = line.match(/^\s+PR(?:[- ]?URL)?:?\s*(.+)\s*$/)) {
+ } else if (m = line.match(/^\s+PR(?:[- ]?URL)?:?\s*(.+)[(\/)?]\s*$/)) {
35
commit.prUrl = m[1]
36
if (ghUser && ghProject && (m = commit.prUrl.match(/^\s*#?(\d+)\s*$/))) {
37
commit.prUrl = 'https://github.com/' + ghUser + '/' + ghProject + '/pull/' + m[1]
0 commit comments