We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d7a53f commit ba8d52fCopy full SHA for ba8d52f
1 file changed
check-release.pl
@@ -176,7 +176,12 @@ ($$$)
176
debug("Ignoring Happy New Year commit: $commit");
177
$commitCount--;
178
}
179
- if ($commitMessage =~ /^[a-z0-9]{7} Organize imports$/) {
+ elsif ($commitMessage =~ /^[a-z0-9]{7} [Uu]pdate.*[Cc]opyright.*20[0-9]{2}/) {
180
+ # Ignore "Update copyrights" copyright header updates
181
+ debug("Ignoring copyright year update commit: $commit");
182
+ $commitCount--;
183
+ }
184
+ elsif ($commitMessage =~ /^[a-z0-9]{7} Organize imports$/) {
185
# Ignore "Organize imports" copyright header updates
186
debug("Ignoring 'Organize imports' commit: $commit");
187
0 commit comments