diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-10-14 22:35:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-14 22:35:06 +0200 |
| commit | 31b86ea6fc189e4146a6f02ab872a5d2b18358e3 (patch) | |
| tree | 95ebd958c85248cbdc199205ce42259ef931657e | |
| parent | 03cbf50c343c1a6aa71689c8dfc09bd9f68c1374 (diff) | |
| parent | 406fb8620948b1c21c88acdbd8996c9efc9ca9ee (diff) | |
| download | rust-31b86ea6fc189e4146a6f02ab872a5d2b18358e3.tar.gz rust-31b86ea6fc189e4146a6f02ab872a5d2b18358e3.zip | |
Rollup merge of #116661 - WaffleLapkin:make-reviews-change-pr-state, r=Mark-Simulacrum
Make "request changes" reviews apply `S-waiting-on-author` This makes it so **assignee** requesting changes on a PR via GitHub UI adds https://github.com/rust-lang/rust/labels/S-waiting-on-author and removes https://github.com/rust-lang/rust/labels/S-waiting-on-review. cc `@compiler-errors` :3
| -rw-r--r-- | triagebot.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/triagebot.toml b/triagebot.toml index 4b051db0d73..9e23fd71c4a 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -23,6 +23,12 @@ allow-unauthenticated = [ "needs-triage", ] +[review-submitted] +# This label is added when a "request changes" review is submitted. +reviewed_label = "S-waiting-on-author" +# These labels are removed when a "request changes" review is submitted. +review_labels = ["S-waiting-on-review"] + [glacier] [ping.icebreakers-llvm] |
