Sfoglia il codice sorgente

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

Muted tests are irrelevant for release notes.
Adrien Grand 6 anni fa
parent
commit
ac07386eab
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      dev-tools/es_release_notes.pl

+ 1 - 1
dev-tools/es_release_notes.pl

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