From 525d78b48917a2aabf209898f45caf174906b913 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 10:05:56 +0000 Subject: [PATCH] docs: fix schedule frequency table missing plain 'weekly' option The frequency table in prompts/create-ado-agentic-workflow.md omitted the plain `weekly` schedule (without an 'on ' modifier), which is fully supported by the compiler (parse_weekly_schedule returns FuzzySchedule::Weekly { day: None } when no tokens follow) and is documented in docs/schedule-syntax.md. Agents consulting this table would not know to use `schedule: weekly` when they want a once-per-week run on any day. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- prompts/create-ado-agentic-workflow.md | 1 + 1 file changed, 1 insertion(+) diff --git a/prompts/create-ado-agentic-workflow.md b/prompts/create-ado-agentic-workflow.md index 302aabed..8f0f670c 100644 --- a/prompts/create-ado-agentic-workflow.md +++ b/prompts/create-ado-agentic-workflow.md @@ -109,6 +109,7 @@ on: | `daily around 14:00` | Within ±60 min of 2 PM UTC | | `daily around 3pm utc+9` | 3 PM JST → converted to UTC | | `daily between 9:00 and 17:00` | Business hours | +| `weekly` | Any day of the week, time scattered | | `weekly on monday` | Every Monday, scattered time | | `weekly on friday around 17:00` | Friday ~5 PM | | `every 2 days` | Every N days, time scattered |