Ignore the `>test-mute` label when generating release notes. (#38307)

Muted tests are irrelevant for release notes.
This commit is contained in:
Adrien Grand 2019-02-04 17:48:08 +01:00 committed by GitHub
parent f872c721ac
commit ac07386eab
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", ">test-failure", ":Core/Infra/Build", "backport" );
( ">non-issue", ">refactoring", ">docs", ">test", ">test-failure", ">test-mute", ":Core/Infra/Build", "backport" );
my %Group_Labels = (
'>breaking' => 'Breaking changes',