Skip to content

Commit 6316c30

Browse files
committed
check-release.pl: ignore "Update license headers"
1 parent 524dfc5 commit 6316c30

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

check-release.pl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,11 @@ ($$$)
181181
debug("Ignoring copyright year update commit: $commit");
182182
$commitCount--;
183183
}
184+
elsif ($commitMessage =~ /^[a-z0-9]{7} [Uu]pdate license (blurb|header)s$/) {
185+
# Ignore "Update license headers" updates
186+
debug("Ignoring 'Organize imports' commit: $commit");
187+
$commitCount--;
188+
}
184189
elsif ($commitMessage =~ /^[a-z0-9]{7} Organize imports$/) {
185190
# Ignore "Organize imports" updates
186191
debug("Ignoring 'Organize imports' commit: $commit");

0 commit comments

Comments
 (0)