Skip to content

Commit 17e934b

Browse files
committed
Regroup FCPs in T-compiler triage agenda
1 parent 0129fcc commit 17e934b

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

src/agenda.rs

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
108108
}),
109109
},
110110
QueryMap {
111-
name: "fcp_finished",
111+
name: "fcp_finished_tcompiler",
112112
kind: QueryKind::List,
113113
query: Arc::new(github::Query {
114114
filters: vec![("state", "all")],
@@ -117,7 +117,26 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
117117
"disposition-merge",
118118
"to-announce",
119119
],
120-
exclude_labels: vec!["t-libs", "t-libs-api", "t-rustdoc"],
120+
exclude_labels: vec![
121+
"t-libs",
122+
"t-libs-api",
123+
"t-rustdoc",
124+
"t-lang",
125+
"t-style",
126+
],
127+
}),
128+
},
129+
QueryMap {
130+
name: "fcp_finished_not_tcompiler",
131+
kind: QueryKind::List,
132+
query: Arc::new(github::Query {
133+
filters: vec![("state", "all")],
134+
include_labels: vec![
135+
"finished-final-comment-period",
136+
"disposition-merge",
137+
"to-announce",
138+
],
139+
exclude_labels: vec!["t-libs", "t-libs-api", "t-rustdoc", "t-compiler"],
121140
}),
122141
},
123142
],

templates/prioritization_agenda.tt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,12 @@ note_id: xxx
3333
{{-issues::render(issues=in_fcp, indent=" ", empty="No FCP requests this time.")}}
3434
- Accepted MCPs
3535
{{-issues::render(issues=mcp_accepted, indent=" ", empty="No new accepted proposals this time.")}}
36+
- MCPs blocked on unresolved concerns
37+
- <Here group MCPs blocked on unresolved concerns>
3638
- Finalized FCPs (disposition merge)
37-
{{-issues::render(issues=fcp_finished, indent=" ", empty="No new finished FCP (disposition merge) this time.")}}
39+
{{-issues::render(issues=fcp_finished_tcompiler, indent=" ", empty="No new finished FCP (disposition merge) this time.")}}
40+
- Other teams finalized FCPs
41+
{{-issues::render(issues=fcp_finished_not_tcompiler, indent=" ", empty="No new finished FCP (disposition merge) this time.")}}
3842

3943
### WG checkins
4044

@@ -86,7 +90,7 @@ don't know
8690

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

9195
## Issues of Note
9296

0 commit comments

Comments
 (0)