Skip to content

Commit

Permalink
Add finalized FCPs to agenda
Browse files Browse the repository at this point in the history
  • Loading branch information
spastorino committed Jul 9, 2020
1 parent 4bacbe0 commit 487da02
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/prioritization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,16 @@ pub fn agenda<'a>() -> Box<Step<'a>> {
},
});

queries.push(QueryMap {
name: "fcp_finished",
query: github::Query {
kind: github::QueryKind::List,
filters: vec![("state", "open")],
include_labels: vec!["finished-final-comment-period", "disposition-merge"],
exclude_labels: vec![],
},
});

actions.push(Query {
repo: "rust-lang/rust",
queries,
Expand Down
2 changes: 2 additions & 0 deletions templates/agenda.tt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ tags: weekly, rustc
{{-issues::render(issues=in_fcp_forge, indent=" ", empty="No FCP requests on forge repo this time.")}}
- Accepted MCPs
{{-issues::render(issues=mcp_accepted, indent=" ", empty="No new accepted proposals this time.")}}
- Finalized FCPs
{{-issues::render(issues=fcp_finished, indent=" ", empty="No new finished FCP this time.")}}

### WG checkins

Expand Down

0 comments on commit 487da02

Please sign in to comment.