Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Latest commit

 

History

History
142 lines (93 loc) · 5.29 KB

README.md

File metadata and controls

142 lines (93 loc) · 5.29 KB

mscbot

Note: This repo has been archived. Please see matrix-org/mscbot-python for the currently active GitHub mscbot codebase.


mscbot manages asynchronous decision making on Rust issues and PRs. It has been adapted from rust-lang/anp's excellent rfcbot.

It listens for commands on all repositories owned by the matrix-org organization.

While its intended usage is for MSCs, you can use its tracking on any issue or pull request which needs an async review/decision cycle.

Please refer to QUICKSTART.md for setting up on your own infastructure.

Usage

mscbot accepts commands in GitHub comments. All commands take the form:

@mscbot COMMAND [PARAMS]

The bot expects one command per comment, and the command must start on its own line, but otherwise the bot doesn't care if there's other text in the comment. This is valid:

TEXT
TEXT
@mscbot fcp merge
TEXT TEXT
TEXT

But this is not:

TEXT @mscbot fcp merge
TEXT

Only the first of these commands will be registered:

@mscbot concern FOO
@mscbot concern BAR

Examples are in each section.

Command grammar

mscbot accepts roughly the following grammar:

merge ::= "merge" | "merged" | "merging" | "merges" ;
close ::= "close" | "closed" | "closing" | "closes" ;
postpone ::= "postpone" | "postponed" | "postponing" | "postpones" ;
cancel ::= "cancel | "canceled" | "canceling" | "cancels" ;
review ::= "reviewed" | "review" | "reviewing" | "reviews" ;
concern ::= "concern" | "concerned" | "concerning" | "concerns" ;
resolve ::= "resolve" | "resolved" | "resolving" | "resolves" ;
poll ::= "ask" | "asked" | "asking" | "asks" |
         "poll" | "polled" | "polling" | "polls" |
         "query" | "queried" | "querying" | "queries" |
         "inquire" | "inquired" | "inquiring" | "inquires" |
         "quiz" | "quizzed" | "quizzing" | "quizzes" |
         "survey" | "surveyed" | "surveying" | "surveys" ;

team_label ::= "T-lang" | .. ;
team_label_simple ::= "lang" | .. ;
team_ping ::= "@"? "rust-lang/lang" | ..;
team_target ::= team_label | team_label_simple | team_ping ;

line_remainder ::= .+$ ;
ws_separated ::= ... ;

subcommand ::= merge | close | postpone | cancel | review
             | concern line_remainder
             | resolve line_remainder
             | poll [team_target]* line_remainder
             ;

invocation ::= "fcp" subcommand
             | "pr" subcommand
             | "f?" ws_separated
             | subcommand
             ;

grammar ::= "@mscbot" ":"? invocation ;

Multiple occurrences of grammar are allowed in each comment you make on GitHub. This means that the following is OK:

@mscbot merge

Some stuff you want to say...

@mscbot concern foobar

Explain the concern...

Final Comment Period

Before proposing a final comment period on an issue/PR/MSC, please double check to make sure that the correct team label(s) has been applied to the issue. As of 04/07/2018, mscbot recognizes these labels:

  • Core: T-core

Proposing FCP

To propose an FCP, use @mscbot fcp DISPOSITION where disposition is one of [merge|close|postpone]. You can also use @mscbot pr DISPOSITION, which will be used in the future to improve the quality of status comments from the bot.

If the proposer is on one of the tagged subteams, mscbot will create a tracking comment with a checklist of review requests. Once all review requests have been satisfied and any concerns have been resolved, it will post a comment to that effect. One week after the "FCP start" comment, it will post another follow-up comment saying that one week has passed.

mscbot will only request reviews from members of the tagged team(s), and as of right now only supports reviews from teams that are tagged at the time an FCP is proposed.

Cancelling FCP

To cancel an FCP proposal after it's started, use @mscbot fcp cancel. This will delete all records of the FCP, including any concerns raised (although their comments will remain).

Reviewing

To indicate that you've reviewed the FCP proposal, either check the box next to your name on the tracking comment, or use the command @mscbot reviewed.

Concerns

To register blocking concerns on the FCP proposal, use @mscbot concern NAME_OF_CONCERN. The bot will parse up until the first newline after the command for the concern's name, and add it to the list of concerns in the tracking comment.

To indicate that your concern has been resolved, use @mscbot resolved NAME_OF_CONCERN. Note that as of this writing, only the original author can mark their concern as resolved.

Note that only one concern per comment is allowed.

Feedback Requests

To request feedback from a user not on the tagged team(s), use @mscbot f? @username. This will create an entry in the database which will be marked as resolved once that user has commented on the issue/PR. Note that these feedback requests will not block start/end of an FCP. If you need to block FCP on that user's feedback, you may want to create a new concern that you can resolve.

In a future update, the UI for the dashboard will be updated to display these feedback requests, but they don't show up anywhere right now.

Contributing, License

Please see CONTRIBUTING.md.