Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/agenda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ pub fn prioritization<'a>() -> Box<dyn Action> {
kind: QueryKind::List,
query: Arc::new(github::Query {
filters: vec![("state", "open")],
include_labels: vec!["S-waiting-on-team", "T-compiler"],
include_labels: vec!["S-waiting-on-t-compiler"],
exclude_labels: vec![],
}),
},
Expand Down Expand Up @@ -558,7 +558,7 @@ pub fn lang<'a>() -> Box<dyn Action + Send + Sync> {
kind: QueryKind::List,
query: Arc::new(github::Query {
filters: vec![("state", "open")],
include_labels: vec!["S-waiting-on-team", "T-lang"],
include_labels: vec!["S-waiting-on-t-lang"],
exclude_labels: vec![],
}),
},
Expand Down
2 changes: 1 addition & 1 deletion templates/lang_agenda.tt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Edit the schedule here: https://github.com/orgs/rust-lang/projects/31/views/7.

{{-issues_heading::render(issues=rfcs_waiting_to_be_merged)}}

## `S-waiting-on-team`
## `S-waiting-on-t-lang`

{{-issues_heading::render(issues=waiting_on_lang_team)}}

Expand Down
4 changes: 2 additions & 2 deletions templates/prioritization_agenda.tt
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ note_id: xxx
{{-issues::render(issues=beta_nominated_t_types, backport_branch=":beta:", empty="No beta nominations for `T-types` this time.")}}
{{-issues::render(issues=stable_nominated_t_types, backport_branch=":stable:", empty="No stable nominations for `T-types` this time.")}}

## PRs S-waiting-on-team
## PRs S-waiting-on-t-compiler

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

Expand Down