Make release notes ignore the `>test-failure` label. (#31309)

This label is uninteresting for release notes.
This commit is contained in:
Adrien Grand 2018-06-19 15:43:31 +02:00 committed by GitHub
parent 2396cbd449
commit a5540ba19c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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',