Skip to content

Commit b6db5ee

Browse files
committed
Update skip patterns
1 parent 0a7be76 commit b6db5ee

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/CommitFormatter.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ private function shouldSkip(string $commitMessage): bool {
8181
return true;
8282
}
8383

84-
if (str_contains($commitMessage, 'is now for PHP 8') || str_contains($commitMessage, 'is now for PHP-8')) {
84+
if (
85+
str_contains($commitMessage, 'is now for PHP 8')
86+
|| str_contains($commitMessage, 'is now for PHP-8')
87+
|| str_contains($commitMessage, 'PHP-8.0 is now for 8')
88+
) {
8589
return true;
8690
}
8791

0 commit comments

Comments
 (0)