docs: fix schedule frequency list in update-workflow validation checklist#1629
Merged
jamesadevine merged 1 commit intoJul 22, 2026
Merged
Conversation
…list Plain `weekly` (any day, scattered time) is a valid fuzzy schedule frequency — supported in src/fuzzy_schedule.rs and documented in docs/schedule-syntax.md — but was omitted from the validation checklist in prompts/update-ado-agentic-workflow.md. Also adds the long form `every N hours` alongside the short `every Nh` for completeness. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jamesadevine
marked this pull request as ready for review
July 22, 2026 20:54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Agent Documentation Update
Findings
weekly(any day, scattered time) from the list of valid schedule frequencies; also omitsevery N hours(long form ofevery Nh)prompts/update-ado-agentic-workflow.mdApplied Fixes
weekly(plain, noon <day>) to the valid frequency list — this form is accepted byparse_weekly_schedule()insrc/fuzzy_schedule.rsand documented indocs/schedule-syntax.mdevery N hoursalongsideevery Nhto show both short and long forms are acceptedNotes
Verified against
src/fuzzy_schedule.rs:parse_weekly_schedulereturnsOk(FuzzySchedule::Weekly { day: None, ... })when called with no arguments, so plainweeklyis valid. Cross-checked withdocs/schedule-syntax.mdwhich showsschedule: weekly # Any day, scattered timeas a canonical example.The
create-ado-agentic-workflow.mdprompt's frequency table already includesweekly— only the update prompt's checklist was missing it.Created by the agent-documentation maintainer workflow.