From 35e29e4adbe97664e00c67fcf6b179be99d2b515 Mon Sep 17 00:00:00 2001 From: Proactive Runtime Bot Date: Thu, 16 Jul 2026 22:24:17 +0200 Subject: [PATCH] docs(workflows): fix cloud schedule syntax in verify-features header The scheduling example in workflows/verify-features.ts passed the workflow via a --file flag, but `cloud schedule` takes the workflow as a positional argument (packages/cli/src/cli/commands/cloud.ts:587). The documented command fails with `error: unknown option '--file'`. The only --file-ish option on the command is --file-type (yaml|ts|py), which is inferred from the extension and not needed here. Co-Authored-By: Claude Opus 4.8 --- workflows/verify-features.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/verify-features.ts b/workflows/verify-features.ts index 826693a76..c7bef777f 100644 --- a/workflows/verify-features.ts +++ b/workflows/verify-features.ts @@ -7,7 +7,7 @@ * PASS/FAIL report into #relay-health. * * Designed to run on a schedule (nightly or post-merge): - * relay cloud schedule --file workflows/verify-features.ts --cron "0 3 * * *" + * relay cloud schedule workflows/verify-features.ts --cron "0 3 * * *" * * Or manually: * relay node workflow run workflows/verify-features.ts