-
Notifications
You must be signed in to change notification settings - Fork 531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some explanations for frequently used rustbot commands #1849
Merged
+17
−5
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -186,10 +186,17 @@ request that reviewer by leaving a comment on the thread with `r? | |
@reviewer-github-id` (e.g. `r? @eddyb`). If you don't know who to request, | ||
don't request anyone; the bot will assign someone automatically based on which files you changed. | ||
|
||
The reviewer may request changes before they approve your PR. Feel free to ask | ||
questions or discuss things you don't understand or disagree with. However, | ||
The reviewer may request changes before they approve your PR, they may mark the PR with label | ||
"S-waiting-on-author" after leaving comments, this means that the PR is blocked on you to making | ||
some requested changes. When you finished iterating on the changes, you can mark the PR as | ||
`S-waiting-on-review` again by leaving a comment with `@rustbot ready`, this will remove the | ||
`S-waiting-on-author` label and add the `S-waiting-on-review` label. | ||
|
||
Feel free to ask questions or discuss things you don't understand or disagree with. However, | ||
recognize that the PR won't be merged unless someone on the Rust team approves | ||
it. | ||
it. If a reviewer leave a comment like `r=me after fixing ...`, that means they approve the PR and | ||
you can merge it with comment with `@bors r=reviwer-github-id`(e.g. `@bors r=eddyb`) to merge it | ||
after fixing lefted trivial issues. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Worth mentioning that r=someone requires permission and the delegate cmd gives it to you. |
||
|
||
When your reviewer approves the PR, it will go into a queue for yet another bot | ||
called `@bors`. `@bors` manages the CI build/merge queue. When your PR reaches | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In
rustbot.md
, there's a similar section mentioning@rustbot label -S-waiting-on-author +S-waiting-on-review
. Should also be adjusted I guess.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, I noticed that part, but I think that section is introducing
@rustbot label
, which is a more general way.I added more explanation about shortcuts after that.