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 65413dd commit 21b6e83Copy full SHA for 21b6e83
build-tools-internal/src/main/resources/templates/index.md
@@ -60,7 +60,7 @@ for (changeType in ['features-enhancements', 'fixes', 'regression']) {
60
print "* ${change.summary} [#${change.pr}](https://github.com/elastic/elasticsearch/pull/${change.pr})"
61
if (change.issues != null && change.issues.empty == false) {
62
print change.issues.size() == 1 ? " (issue: " : " (issues: "
63
- print change.issues.collect { "[#${change.pr}](https://github.com/elastic/elasticsearch/pull/${change.pr})" }.join(", ")
+ print change.issues.collect { "[#${it}](https://github.com/elastic/elasticsearch/issues/${it})" }.join(", ")
64
print ")"
65
}
66
print "\n"
0 commit comments