diff --git a/alerting/alert/type.go b/alerting/alert/type.go index ed282527..029590d2 100644 --- a/alerting/alert/type.go +++ b/alerting/alert/type.go @@ -62,6 +62,9 @@ const ( // TypeTeams is the Type for the teams alerting provider TypeTeams Type = "teams" + // TypeTeamsWorkflows is the Type for the teams-workflows alerting provider + TypeTeamsWorkflows Type = "teams-workflows" + // TypeTelegram is the Type for the telegram alerting provider TypeTelegram Type = "telegram" diff --git a/config/config.go b/config/config.go index 8aa61feb..19fb2ab1 100644 --- a/config/config.go +++ b/config/config.go @@ -413,6 +413,7 @@ func validateAlertingConfig(alertingConfig *alerting.Config, endpoints []*endpoi alert.TypePushover, alert.TypeSlack, alert.TypeTeams, + alert.TypeTeamsWorkflows, alert.TypeTelegram, alert.TypeTwilio, alert.TypeZulip,