Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Concern

The concern command is used to formally register a concern at the top comment of a GitHub issue/PR.

Usage

A concern can be registered by writing a comment with the command:

@rustbot concern my concern title

The concern is then added in the top comment of the GitHub issue to a special section: Concerns (which should not be edited by hand).

Concerns can only be registered by member of the organization and cannot be registered on active rfcbot FCPs.

Resolving a concern

Concerns can be resolved by writing a comment with the command:

@rustbot resolve my concern title

The concern is then strikethrough and a link to the comment resolving the concern is added next to it.

Configuration

This feature is enabled by having a [concern] table in triagebot.toml:

[concern]
labels = ["has-concerns"] # optional, list of labels to be added to the issue/PR when there are un-resolved concerns

Implementation

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