prs_waiting_on_team.tt 1.1 KB

12345678910111213141516171819202122232425
  1. {% import "_issues_with_meta.tt" as issues %}
  2. ## PR's waiting for on team
  3. 1. [All PR's waiting on team](https://github.com/rust-lang/rust/labels/S-waiting-on-team)
  4. - Add T-compiler or libs-impl tag when it corresponds.
  5. - Do a sanity check on them.
  6. ### Issues
  7. {{-issues::render(issues=prs_waiting_on_team_all, empty="There are no PR's waiting on team this time.")}}
  8. 2. [PR's waiting on T-compiler](https://github.com/rust-lang/rust/pulls?q=is%3Aopen+is%3Apr+label%3AS-waiting-on-team+label%3AT-compiler)
  9. - Explicitly nominate any that you think may be able to be resolved *quickly* in triage meeting.
  10. ### Issues
  11. {{-issues::render(issues=prs_waiting_on_team_t_compiler, empty="There are no PR's waiting on T-compiler this time.")}}
  12. 3. [PR's waiting on libs-impl](https://github.com/rust-lang/rust/pulls?q=is%3Aopen+is%3Apr+label%3AS-waiting-on-team+label%3Alibs-impl)
  13. - Explicitly nominate any that you think may be able to be resolved *quickly* in triage meeting.
  14. ### Issues
  15. {{-issues::render(issues=prs_waiting_on_team_libs_impl, empty="There are no PR's waiting on libs-impl this time.")}}