From dc3f841da2c55a580d12fd0b1263459439cf774a Mon Sep 17 00:00:00 2001 From: Jonathan Ballet Date: Tue, 2 Jul 2024 17:52:35 +0200 Subject: [PATCH] docs: document the Opsgenie "teams" responder type behavior (#3205) * docs: document the Opsgenie "teams" responder type behavior It has been changed in #2685 but the behavior is not really documented: * `teams` supports a comma-separated list of teams, through the `name` fields only * if the list of teams is empty, no team responders are sent to Opsgenie --------- Signed-off-by: Jonathan Ballet --- docs/configuration.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 2363e5a2..992e1fe4 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1010,7 +1010,11 @@ responders: [ name: ] [ username: ] -# "team", "teams", "user", "escalation" or "schedule". +# One of `team`, `teams`, `user`, `escalation` or `schedule`. +# +# The `teams` responder is configured using the `name` field above. +# This field can contain a comma-separated list of team names. +# If the list is empty, no responders are configured. type: ```