Merge pull request #34 from abhi1693/chore/ci-clerk-secrets

CI: wire Clerk env vars into frontend CI steps
This commit is contained in:
Abhimanyu Saharan
2026-02-07 16:54:14 +05:30
committed by GitHub
10 changed files with 2861 additions and 10 deletions

View File

@@ -110,8 +110,8 @@ async def _notify_chat_targets(
# These are intended to be parsed verbatim by agent runtimes.
if command in {"/pause", "/resume"}:
statement = select(Agent).where(col(Agent.board_id) == board.id)
targets = list(await session.exec(statement))
for agent in targets:
pause_targets: list[Agent] = list(await session.exec(statement))
for agent in pause_targets:
if actor.actor_type == "agent" and actor.agent and agent.id == actor.agent.id:
continue
if not agent.openclaw_session_id: