test: harden release CI ordering · openclaw/openclaw@bb5b6f3
steipete
·
2026-06-01
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -50,6 +50,7 @@ import { formatErrorMessage } from "../errors.js";
|
50 | 50 | import { throwIfAborted } from "./abort.js"; |
51 | 51 | import { resolveOutboundChannelPlugin } from "./channel-resolution.js"; |
52 | 52 | import { |
| 53 | +isConfiguredChannel, |
53 | 54 | listConfiguredMessageChannels, |
54 | 55 | resolveMessageChannelSelection, |
55 | 56 | } from "./channel-selection.js"; |
@@ -638,6 +639,9 @@ async function hasConfiguredCurrentSourceChannel(input: RunMessageActionParams):
|
638 | 639 | if (!provider || provider === INTERNAL_MESSAGE_CHANNEL) { |
639 | 640 | return false; |
640 | 641 | } |
| 642 | +if (!isConfiguredChannel(input.cfg, provider)) { |
| 643 | +return false; |
| 644 | +} |
641 | 645 | if (!resolveOutboundChannelPlugin({ channel: provider, cfg: input.cfg, allowBootstrap: true })) { |
642 | 646 | return false; |
643 | 647 | } |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。