Skip to content

Commit bd0f9e6

Browse files
authored
Merge pull request #1748 from apiraino/add-types-beta-backports
Add T-types beta backports
2 parents 619e2f1 + ebe2637 commit bd0f9e6

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/agenda.rs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,26 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
181181
exclude_labels: vec!["stable-accepted"],
182182
}),
183183
},
184+
// beta nomination t-types
185+
QueryMap {
186+
name: "beta_nominated_t_types",
187+
kind: QueryKind::List,
188+
query: Arc::new(github::Query {
189+
filters: vec![],
190+
include_labels: vec!["beta-nominated", "T-types"],
191+
exclude_labels: vec!["beta-accepted"],
192+
}),
193+
},
194+
// stable nomination queries
195+
QueryMap {
196+
name: "stable_nominated_t_types",
197+
kind: QueryKind::List,
198+
query: Arc::new(github::Query {
199+
filters: vec![],
200+
include_labels: vec!["stable-nominated", "T-Types"],
201+
exclude_labels: vec!["stable-accepted"],
202+
}),
203+
},
184204
// prs waiting on team queries
185205
QueryMap {
186206
name: "prs_waiting_on_team_t_compiler",

templates/prioritization_agenda.tt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,23 @@ decline
6565
don't know
6666
-->
6767

68+
[T-types stable](https://github.com/rust-lang/rust/issues?q=is%3Aall+label%3Abeta-nominated+-label%3Abeta-accepted+label%3AT-types) / [T-types beta](https://github.com/rust-lang/rust/issues?q=is%3Aall+label%3Astable-nominated+-label%3Astable-accepted+label%3AT-types)
69+
{{-issues::render(issues=beta_nominated_t_types, branch=":beta:", empty="No beta nominations for `T-types` this time.")}}
70+
<!--
71+
/poll Approve beta backport of #12345?
72+
approve
73+
decline
74+
don't know
75+
-->
76+
{{-issues::render(issues=stable_nominated_t_types, branch=":stable:", empty="No stable nominations for `T-types` this time.")}}
77+
<!--
78+
/poll Approve stable backport of #12345?
79+
approve
80+
approve but does not justify new dot release
81+
decline
82+
don't know
83+
-->
84+
6885
## PRs S-waiting-on-team
6986

7087
[T-compiler](https://github.com/rust-lang/rust/pulls?q=is%3Aopen+label%3AS-waiting-on-team+label%3AT-compiler)

0 commit comments

Comments
 (0)