We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f932722 commit 26a9951Copy full SHA for 26a9951
1 file changed
check-release.pl
@@ -170,11 +170,17 @@ ($$$)
170
foreach my $commit (@commits) {
171
chomp $commit;
172
my $commitMessage = `git log -1 --oneline $commit`;
173
+ chomp $commitMessage;
174
if ($commitMessage =~ /^[a-z0-9]{7} [Hh]appy .*[Nn]ew [Yy]ear/) {
175
# Ignore "Happy New Year" copyright header updates
176
debug("Ignoring Happy New Year commit: $commit");
177
$commitCount--;
178
}
179
+ if ($commitMessage =~ /^[a-z0-9]{7} Organize imports$/) {
180
+ # Ignore "Organize imports" copyright header updates
181
+ debug("Ignoring 'Organize imports' commit: $commit");
182
+ $commitCount--;
183
+ }
184
185
186
if ($verbose || $commitCount > 0) {
0 commit comments