Skip to content

Commit

Permalink
Merge pull request #1782 from apiraino/split-fcps-in-compiler-triage-…
Browse files Browse the repository at this point in the history
…agenda

Regroup FCPs in T-compiler triage agenda
  • Loading branch information
jackh726 committed Mar 14, 2024
2 parents 0129fcc + 17e934b commit 6319504
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
23 changes: 21 additions & 2 deletions src/agenda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
}),
},
QueryMap {
name: "fcp_finished",
name: "fcp_finished_tcompiler",
kind: QueryKind::List,
query: Arc::new(github::Query {
filters: vec![("state", "all")],
Expand All @@ -117,7 +117,26 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
"disposition-merge",
"to-announce",
],
exclude_labels: vec!["t-libs", "t-libs-api", "t-rustdoc"],
exclude_labels: vec![
"t-libs",
"t-libs-api",
"t-rustdoc",
"t-lang",
"t-style",
],
}),
},
QueryMap {
name: "fcp_finished_not_tcompiler",
kind: QueryKind::List,
query: Arc::new(github::Query {
filters: vec![("state", "all")],
include_labels: vec![
"finished-final-comment-period",
"disposition-merge",
"to-announce",
],
exclude_labels: vec!["t-libs", "t-libs-api", "t-rustdoc", "t-compiler"],
}),
},
],
Expand Down
8 changes: 6 additions & 2 deletions templates/prioritization_agenda.tt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,12 @@ note_id: xxx
{{-issues::render(issues=in_fcp, indent=" ", empty="No FCP requests this time.")}}
- Accepted MCPs
{{-issues::render(issues=mcp_accepted, indent=" ", empty="No new accepted proposals this time.")}}
- MCPs blocked on unresolved concerns
- <Here group MCPs blocked on unresolved concerns>
- Finalized FCPs (disposition merge)
{{-issues::render(issues=fcp_finished, indent=" ", empty="No new finished FCP (disposition merge) this time.")}}
{{-issues::render(issues=fcp_finished_tcompiler, indent=" ", empty="No new finished FCP (disposition merge) this time.")}}
- Other teams finalized FCPs
{{-issues::render(issues=fcp_finished_not_tcompiler, indent=" ", empty="No new finished FCP (disposition merge) this time.")}}

### WG checkins

Expand Down Expand Up @@ -86,7 +90,7 @@ don't know

[T-compiler](https://github.com/rust-lang/rust/pulls?q=is%3Aopen+label%3AS-waiting-on-team+label%3AT-compiler)
{{-issues::render(issues=prs_waiting_on_team_t_compiler, empty="No PRs waiting on `T-compiler` this time.")}}
- Other issues [in progress or waiting on other teams](https://hackmd.io/XYr1BrOWSiqCrl8RCWXRaQ)
- [Issues in progress or waiting on other teams](https://hackmd.io/XYr1BrOWSiqCrl8RCWXRaQ)

## Issues of Note

Expand Down

0 comments on commit 6319504

Please sign in to comment.