Преглед изворни кода

Merge pull request #1436 from Mark-Simulacrum/lang-upd

Avoid placing finish FCPs in proposed/active lists
Mark Rousskov пре 3 година
родитељ
комит
833f003706
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/agenda.rs

+ 2 - 2
src/agenda.rs

@@ -580,7 +580,7 @@ pub fn lang<'a>() -> Box<dyn Action> {
                             kind: github::QueryKind::List,
                             filters: vec![("state", "open")],
                             include_labels: vec!["T-lang", "proposed-final-comment-period"],
-                            exclude_labels: vec![],
+                            exclude_labels: vec!["finished-final-comment-period"],
                         },
                     },
                     QueryMap {
@@ -589,7 +589,7 @@ pub fn lang<'a>() -> Box<dyn Action> {
                             kind: github::QueryKind::List,
                             filters: vec![("state", "open")],
                             include_labels: vec!["T-lang", "final-comment-period"],
-                            exclude_labels: vec![],
+                            exclude_labels: vec!["finished-final-comment-period"],
                         },
                     },
                     QueryMap {