Skip to content
Snippets Groups Projects
Commit 970cc7ea authored by Thomas Rohlajz's avatar Thomas Rohlajz Committed by GitHub
Browse files

Fix typo in generated URI

This should fix incorrect generated links in changelog.
parent 5288f026
No related merge requests found
......@@ -70,7 +70,7 @@ var writerOpts = {
// GitHub issue URLs.
commit.subject = commit.subject.replace(/#([0-9]+)/g, function(_, issue) {
issues.push(issue);
return '[#' + issue + '](' + gitUrl + '/issue/' + issue + ')';
return '[#' + issue + '](' + gitUrl + '/issues/' + issue + ')';
});
// GitHub user URLs.
commit.subject = commit.subject.replace(/@([a-zA-Z0-9_]+)/g, '[@$1](https://github.com/$1)');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment