From 094d2be87d8ba790b21a92f288b6ebad24613f31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 01:27:08 +0000 Subject: [PATCH] docs: add missing 'every N weeks' format to schedule-syntax reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fuzzy_schedule.rs parser supports 'every N weeks' (converted to N×7 days), which is documented in README.md and prompts/create-ado-agentic-workflow.md, but was absent from the dedicated docs/schedule-syntax.md reference under Special Periods. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/schedule-syntax.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/schedule-syntax.md b/docs/schedule-syntax.md index c62cb72c..adab4f00 100644 --- a/docs/schedule-syntax.md +++ b/docs/schedule-syntax.md @@ -58,9 +58,10 @@ Note: Minimum interval is 5 minutes (GitHub Actions/Azure DevOps constraint). ### Special Periods ```yaml -schedule: bi-weekly # Every 14 days at scattered time -schedule: tri-weekly # Every 21 days at scattered time -schedule: every 2 days # Every 2 days at scattered time +schedule: bi-weekly # Every 14 days at scattered time +schedule: tri-weekly # Every 21 days at scattered time +schedule: every 2 days # Every N days at scattered time +schedule: every 2 weeks # Every N weeks (converted to N×7 days) at scattered time ``` ### Timezone Support