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 1d07eab commit 4128f47Copy full SHA for 4128f47
scripts/changelog-github-custom.js
@@ -71,7 +71,9 @@ const changelogFunctions = {
71
// add links to issue hints (fix #123) => (fix [#123](https://....))
72
const linkifyIssueHints = (line) =>
73
line.replace(/(?<=\( ?(?:fix|fixes|see) )(#\d+)(?= ?\))/g, (issueHash) => {
74
- return `[${issueHash}](https://github.com/${options.repo}/issue/${issueHash.substring(1)})`;
+ return `[${issueHash}](https://github.com/${options.repo}/issues/${issueHash.substring(
75
+ 1
76
+ )})`;
77
});
78
const [firstLine, ...futureLines] = replacedChangelog
79
.split('\n')
0 commit comments