fix(slack): change default replyToMode from "off" to "all" (#14364)

Co-authored-by: Tak Hoffman <781889+Takhoffman@users.noreply.github.com>
This commit is contained in:
NM
2026-02-12 01:13:07 -05:00
committed by GitHub
parent bbfaac88ff
commit 3696b15abc

View File

@@ -112,7 +112,7 @@ export async function monitorSlackProvider(opts: MonitorSlackOpts = {}) {
const useAccessGroups = cfg.commands?.useAccessGroups !== false;
const reactionMode = slackCfg.reactionNotifications ?? "own";
const reactionAllowlist = slackCfg.reactionAllowlist ?? [];
const replyToMode = slackCfg.replyToMode ?? "off";
const replyToMode = slackCfg.replyToMode ?? "all";
const threadHistoryScope = slackCfg.thread?.historyScope ?? "thread";
const threadInheritParent = slackCfg.thread?.inheritParent ?? false;
const slashCommand = resolveSlackSlashCommandConfig(opts.slashCommand ?? slackCfg.slashCommand);