Skip to content

Commit 2505474

Browse files
Merge pull request #1679 from apiraino/track-ttypes-pcritical-issues
[Wg-prio] Track in compiler meeting also T-types P-critical issues
2 parents cf641cf + b0a0e30 commit 2505474

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

src/agenda.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,15 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
361361
exclude_labels: vec![],
362362
}),
363363
},
364+
QueryMap {
365+
name: "p_critical_t_types",
366+
kind: QueryKind::List,
367+
query: Arc::new(github::Query {
368+
filters: vec![("state", "open")],
369+
include_labels: vec!["T-types", "P-critical"],
370+
exclude_labels: vec![],
371+
}),
372+
},
364373
QueryMap {
365374
name: "p_critical_t_rustdoc",
366375
kind: QueryKind::List,

templates/prioritization_agenda.tt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ tags: weekly, rustc
1414
- Reminder: if you see a PR/issue that seems like there might be legal implications due to copyright/IP/etc, please let the Core team know (or at least message @_**pnkfelix** or @_**Wesley Wiser** so we can pass it along).
1515

1616
### Other WG meetings ([calendar link](https://calendar.google.com/calendar/embed?src=6u5rrtce6lrtv07pfi3damgjus%40group.calendar.google.com))
17+
1718
{{-meetings::render(meetings=meetings_tcompiler, empty="No meetings scheduled for next week")}}
1819

1920
## MCPs/FCPs
2021

2122
- New MCPs (take a look, see if you like them!)
2223
{{-issues::render(issues=mcp_new_not_seconded, indent=" ", empty="No new proposals this time.")}}
24+
- Old MCPs (stale MCP might be closed as per [MCP procedure](https://forge.rust-lang.org/compiler/mcp.html#when-should-major-change-proposals-be-closed))
25+
- None at this time
2326
- Old MCPs (not seconded, take a look)
2427
{{-issues::render(issues=mcp_old_not_seconded, indent=" ", with_age=true, empty="No old proposals this time.")}}
2528
- Pending FCP requests (check your boxes!)
@@ -80,10 +83,13 @@ tags: weekly, rustc
8083
### P-critical
8184

8285
[T-compiler](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AP-critical+label%3AT-compiler)
83-
{{-issues::render(issues=p_critical_t_compiler, empty="No `P-critical` issues for `T-compiler` this time.")}}
86+
{{-issues::render(issues=p_critical_t_compiler, empty="No `P-critical` issues for `T-compiler` at this time.")}}
87+
88+
[T-types](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AP-critical+label%3AT-types)
89+
{{-issues::render(issues=p_critical_t_types, empty="No `P-critical` issues for `T-types` at this time.")}}
8490

8591
[T-rustdoc](https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3AP-critical+label%3AT-rustdoc)
86-
{{-issues::render(issues=p_critical_t_rustdoc, empty="No `P-critical` issues for `T-rustdoc` this time.")}}
92+
{{-issues::render(issues=p_critical_t_rustdoc, empty="No `P-critical` issues for `T-rustdoc` at this time.")}}
8793

8894
### P-high regressions
8995

0 commit comments

Comments
 (0)