Make release notes ignore the `>test-failure` label. (#31309)
This label is uninteresting for release notes.
This commit is contained in:
parent
2396cbd449
commit
a5540ba19c
|
@ -32,7 +32,7 @@ my @Groups = (
|
|||
">enhancement", ">bug", ">regression", ">upgrade"
|
||||
);
|
||||
my %Ignore = map { $_ => 1 }
|
||||
( ">non-issue", ">refactoring", ">docs", ">test", ":Core/Build" );
|
||||
( ">non-issue", ">refactoring", ">docs", ">test", ">test-failure", ":Core/Build" );
|
||||
|
||||
my %Group_Labels = (
|
||||
'>breaking' => 'Breaking changes',
|
||||
|
|
Loading…
Reference in New Issue