Browse Source

Filter out major-change-accepted proposals from new not seconded list

Santiago Pastorino 4 years ago
parent
commit
3f54a153e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/prioritization.rs

+ 1 - 1
src/prioritization.rs

@@ -239,7 +239,7 @@ pub fn agenda<'a>() -> Box<Step<'a>> {
             kind: github::QueryKind::List,
             filters: vec![("state", "open")],
             include_labels: vec!["major-change", "to-announce"],
-            exclude_labels: vec!["final-comment-period"],
+            exclude_labels: vec!["final-comment-period", "major-change-accepted"],
         },
     });