Skip to content

Commit

Permalink
[INFR] Fixed workflows/actionss
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Dec 21, 2024
1 parent 0e265c7 commit 16f7f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/genchangelog.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ function getMarkDown($prevTag, $currTag)
$commitAuthor = correctAuthor($commitAuthor);
$commitSubject = correctSubject($commitSubject, $commitIssues);
$commitIssuesWithUrls = array_map(function ($issue) {
return sprintf('[%1$s](https://github.com/horstoeko/zugferd/issues/%2$s)', $issue, substr($issue, 1));
return sprintf('[%1$s](https://github.com/horstoeko/zugferdmail/issues/%2$s)', $issue, substr($issue, 1));
}, $commitIssues);

$commitSubjectIcons = "";
Expand All @@ -263,7 +263,7 @@ function getMarkDown($prevTag, $currTag)

$commitSubjectIcons .= ($commitSubjectIcons == "" ? ':new_moon: ' : '');

$markDown[] = sprintf('| %6$s | [%1$s](https://github.com/horstoeko/zugferd/commit/%1$s) | %2$s | %3$s | %4$s | %5$s', $commitHash, $commitDate, $commitAuthor, $commitSubject, implode(", ", $commitIssuesWithUrls), $commitSubjectIcons);
$markDown[] = sprintf('| %6$s | [%1$s](https://github.com/horstoeko/zugferdmail/commit/%1$s) | %2$s | %3$s | %4$s | %5$s', $commitHash, $commitDate, $commitAuthor, $commitSubject, implode(", ", $commitIssuesWithUrls), $commitSubjectIcons);
}

$markDown[] = '';
Expand Down

0 comments on commit 16f7f5f

Please sign in to comment.