nominations.tt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {% import "_issues_with_meta.tt" as issues %}
  2. ## Stable nominations
  3. - [All stable nominations](https://github.com/rust-lang/rust/issues?q=is%3Aall+label%3Astable-nominated+-label%3Astable-accepted)
  4. - Add T-compiler, libs-impl or T-rustdoc tag when it corresponds.
  5. - Do a sanity check on them.
  6. ### Issues
  7. {{-issues::render(issues=nominations_stable_nominated, empty="There are no stable nominations this time.")}}
  8. ## Beta nominations
  9. - [All beta nominations](https://github.com/rust-lang/rust/issues?q=is%3Aall+label%3Abeta-nominated+-label%3Abeta-accepted)
  10. - Add T-compiler, libs-impl or T-rustdoc tag when it corresponds.
  11. - Do a sanity check on them.
  12. ### Issues
  13. {{-issues::render(issues=nominations_beta_nominated, empty="There are no beta nominations this time.")}}
  14. ## I-nominated
  15. 1. [All I-nominated](https://github.com/rust-lang/rust/labels/I-nominated)
  16. - Add T-compiler or libs-impl tag when it corresponds.
  17. - Do a sanity check on them.
  18. ### Issues
  19. {{-issues::render(issues=nominations_i_nominated, empty="There are no I-nominated issues this time.")}}
  20. 2. [I-nominated T-compiler](https://github.com/rust-lang/rust/issues?utf8=%E2%9C%93&q=is%3Aopen+label%3AI-nominated+label%3AT-compiler)
  21. - Remove leftovers from last meeting.
  22. - Do a sanity check on them.
  23. ### Issues
  24. {{-issues::render(issues=nominations_i_nominated_t_compiler, empty="There are no I-nominated issues for T-compiler this time.")}}
  25. 3. [I-nominated libs-impl](https://github.com/rust-lang/rust/issues?utf8=%E2%9C%93&q=is%3Aopen+label%3AI-nominated+label%3Alibs-impl)
  26. - Remove leftovers from last meeting.
  27. - Do a sanity check on them.
  28. ### Issues
  29. {{-issues::render(issues=nominations_i_nominated_libs_impl, empty="There are no I-nominated issues for libs-impl this time.")}}