Skip to content

Commit

Permalink
Merge pull request #1748 from apiraino/add-types-beta-backports
Browse files Browse the repository at this point in the history
Add T-types beta backports
  • Loading branch information
spastorino authored Nov 15, 2023
2 parents 619e2f1 + ebe2637 commit bd0f9e6
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/agenda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,26 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
exclude_labels: vec!["stable-accepted"],
}),
},
// beta nomination t-types
QueryMap {
name: "beta_nominated_t_types",
kind: QueryKind::List,
query: Arc::new(github::Query {
filters: vec![],
include_labels: vec!["beta-nominated", "T-types"],
exclude_labels: vec!["beta-accepted"],
}),
},
// stable nomination queries
QueryMap {
name: "stable_nominated_t_types",
kind: QueryKind::List,
query: Arc::new(github::Query {
filters: vec![],
include_labels: vec!["stable-nominated", "T-Types"],
exclude_labels: vec!["stable-accepted"],
}),
},
// prs waiting on team queries
QueryMap {
name: "prs_waiting_on_team_t_compiler",
Expand Down
17 changes: 17 additions & 0 deletions templates/prioritization_agenda.tt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,23 @@ decline
don't know
-->

[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)
{{-issues::render(issues=beta_nominated_t_types, branch=":beta:", empty="No beta nominations for `T-types` this time.")}}
<!--
/poll Approve beta backport of #12345?
approve
decline
don't know
-->
{{-issues::render(issues=stable_nominated_t_types, branch=":stable:", empty="No stable nominations for `T-types` this time.")}}
<!--
/poll Approve stable backport of #12345?
approve
approve but does not justify new dot release
decline
don't know
-->

## PRs S-waiting-on-team

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

0 comments on commit bd0f9e6

Please sign in to comment.