Requesting Prioritization

Users can request an issue to be prioritized by the Prioritization WG.

Usage

On repositories configured for prioritization, any user can post a comment with:

@rustbot prioritize

which will add the I-prioritize label to the issue to notify the Prioritization WG that the issue needs prioritization.

Configuration

This feature is enabled on a repository by the [prioritize] table in triagebot.toml:

[prioritize]
# Name of the label used for requesting prioritization on issues
label = "I-prioritize"

Implementation

See parser/src/command/prioritize.rs and src/handlers/prioritize.rs.