diff options
author | 2022-01-31 23:05:31 +0000 | |
---|---|---|
committer | 2022-01-31 23:05:31 +0000 | |
commit | 73fe24f447c4626bbf8a2b7a235b8971f0d82f25 (patch) | |
tree | b9b7adb98ac799baced19185bf1b05841e39f734 | |
parent | ✏️`LATEST_MESSSAGE` -> `LATEST_MESSAGE` (diff) |
🔧 Add `notify_running_low` config values
-rw-r--r-- | config-default.yml | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/config-default.yml b/config-default.yml index 583733fda..fcb1583a8 100644 --- a/config-default.yml +++ b/config-default.yml @@ -513,19 +513,16 @@ help_channels: # Prefix for help channel names name_prefix: 'help-' - # Notify if more available channels are needed but there are no more dormant ones - notify: true + notify_channel: *HELPERS # Channel in which to send notifications messages + notify_minutes: 15 # Minimum interval between helper notifications, used by both none_remaining and running_low - # Channel in which to send notifications - notify_channel: *HELPERS - - # Minimum interval between helper notifications - notify_minutes: 15 - - # Mention these roles in notifications - notify_roles: + notify_none_remaining: true # Pinging notification for the Helper role when no dormant channels remain + notify_none_remaining_roles: # Mention these roles in the non_remaining notification - *HELPERS_ROLE + notify_running_low: true # Non-pinging notification which is triggered when the channel count is equal or less than the threshold + notify_running_low_threshold: 4 # The amount of channels at which a running_low notification will be sent + redirect_output: delete_delay: 15 |