Explorar o código

Merge pull request #681 from spastorino/filter-major-change-accepted

Filter out major-change-accepted proposals from new not seconded list
Mark Rousskov %!s(int64=4) %!d(string=hai) anos
pai
achega
6e718958e7
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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"],
         },
     });