Skip to content

Commit 1167d86

Browse files
authored
Avoid requiring changelog entry when updating the service template (#1969)
1 parent 89ec202 commit 1167d86

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/Unit/ChangelogTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ static function ($branch) {
215215
if ('Service' === $parts[1]) {
216216
$service = $parts[2];
217217
$base = 'src/Service/' . $service;
218+
219+
if ('.template' === $service) {
220+
continue; // The service template does not have an actual changelog
221+
}
218222
} elseif ('Integration' === $parts[1]) {
219223
$service = $parts[2] . '/' . $parts[3];
220224
$base = 'src/Integration/' . $service;

0 commit comments

Comments
 (0)