diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-06-22 14:53:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-22 14:53:56 +0200 |
| commit | c5e6f48544a1a9dfdfc6a953d5c9d56c399bcb7d (patch) | |
| tree | 7c00b342398c48898a8cba76e31ecfdde193f127 | |
| parent | cb85f4bce0648511b7f837515c556ab4e8dd6c7a (diff) | |
| parent | ae71e965dcc5b5b4c4b0ac94d22852968fbf085d (diff) | |
Rollup merge of #73585 - LeSeulArtichaut:patch-3, r=Mark-Simulacrum
Do not send a notification for P-high stable regressions This is kind of a hack to only match nightly and beta regressions, but not stable regressions. See my tests [on the playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=6ff8a809162118aa2951f2ff12400067). r? @spastorino cc @Mark-Simulacrum
| -rw-r--r-- | triagebot.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/triagebot.toml b/triagebot.toml index fc2dbb8d440..5361a618d4e 100644 --- a/triagebot.toml +++ b/triagebot.toml @@ -113,7 +113,7 @@ topic = "P-critical #{number} {title}" message_on_add = "@*WG-prioritization* issue #{number} has been assigned `P-critical`." [notify-zulip."P-high"] -required_labels = ["regression-from-stable-to-*"] +required_labels = ["regression-from-stable-to-[bn]*"] # only nightly and beta regressions zulip_stream = 227806 # #t-compiler/wg-prioritization topic = "P-high regression #{number} {title}" message_on_add = "@*WG-prioritization* issue #{number} has been assigned `P-high` and is a regression." |
