feat: remove full eval from PR builds, add daily scheduled cron eval#381
Open
hadarzaguri wants to merge 3 commits into
Open
feat: remove full eval from PR builds, add daily scheduled cron eval#381hadarzaguri wants to merge 3 commits into
hadarzaguri wants to merge 3 commits into
Conversation
PRs now run lightweight validation only (YAML parse + tag name check against EvalForge), cutting per-PR cost from a 30-min EvalForge poll to a single cheap API call. A new daily cron workflow (8am UTC) runs the full eval against tags from YAML files changed in the last 25 hours, reports failures as GitHub Issues labeled skill-eval-regression, and auto-closes them on recovery. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…Version arg order) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
skill-eval-scheduled.yml): new workflow runs at 8am UTC every day. Findsyaml/wix-manage/**/documentation.yamlfiles changed in the last 25 hours, collects their tags, and runs the full eval against those tags. If nothing changed → skips. On failure → opens a GitHub Issue labeledskill-eval-regression. On recovery → auto-closes the issue.modeinput added (required:pr|scheduled).runPrandrunScheduledare separate code paths. Removed unusedformatEvalPassed/Failed/Timeout/NoScenarios. Unified scheduled formatters into singleformatScheduledResult(status, sha, opts).One-time setup (before first cron fires)
gh label create skill-eval-regression --color e11d48 --description "Skill eval regression detected by scheduled run"Note
dist/index.jsneeds to be rebuilt locally before merging:The
skill-eval-ci.ymlworkflow will verify this on the PR.Test plan
yaml/wix-manage/— confirm workflow completes in seconds, PR comment shows validation passed/failed (no EvalForge eval run)skill-eval-scheduledviaworkflow_dispatch— confirm it runs the full eval and logs correctlyskill-eval-regressionissue and a passing run closes it🤖 Generated with Claude Code