%
if (!commit.hash) {
return;
}
const shortSha = commit.hash.slice(0, 7);
%>
<%# Commit: %>
<%
if (shortSha) {
%>
<%
} %>
|
<%# Desc: %>
<%= commit.subject %> |
<%# Notes: %>
<%
for (const reference of commit.references) {
if (!reference.action || !reference.issue) {
continue;
}
const issue = reference.issue;
const owner = reference.owner || 'angular';
const repository = reference.repository || 'angular-cli';
%>
[Closes #<%= issue %>]
<% } %>
|