feat: add daily-evals-report workflow#45805
Merged
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
…t prompt Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
pelikhan
July 15, 2026 19:06
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a daily workflow that aggregates evaluation results and publishes repository-wide health reports.
Changes:
- Fetches and analyzes seven days of evaluation artifacts.
- Calculates workflow and question-level health metrics.
- Generates rolling issues or no-op outputs.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/daily-evals-report.md |
Defines reporting logic and outputs. |
.github/workflows/daily-evals-report.lock.yml |
Compiled GitHub Actions workflow. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/2 changed files
- Comments generated: 6
- Review effort level: Medium
Comment on lines
+28
to
+31
| - uses: shared/daily-audit-base.md | ||
| with: | ||
| title-prefix: "[evals] " | ||
| expires: 7d |
| max-bot-mentions: 1 | ||
| create-issue: | ||
| title-prefix: "[evals] " | ||
| labels: [evals, automated-analysis] |
Comment on lines
+88
to
+93
| 1. Check for `evals/evals.jsonl` (or `evals.jsonl` at root if flattened). | ||
| 2. Read `aw_info.json` (or `activation/aw_info.json`) to get: | ||
| - `workflow_name` (or `workflow.name`) | ||
| - `conclusion` (success / failure / cancelled) | ||
| - Whether evals were declared (check for an `evals` key or the presence of the evals job in the run) | ||
| 3. Note runs where the workflow declares evals but `evals.jsonl` is absent — these are **evals job failures**. |
Comment on lines
+102
to
+108
| - `answer` — `"YES"` or `"NO"` | ||
| - Optionally: `confidence`, `rationale`, `model` | ||
|
|
||
| Extract per-run: | ||
| - Workflow name and run ID | ||
| - Per-question answer list | ||
| - Overall pass/fail: **pass** if every question is YES, **fail** if any question is NO |
| - `runs_evals_job_failed` — runs that declared evals but produced no `evals.jsonl` | ||
| - `evals_job_success_rate` = `runs_with_evals_results / (runs_with_evals_results + runs_evals_job_failed) * 100` | ||
| - `run_pass_rate` = runs where all questions are YES / `runs_with_evals_results * 100` | ||
| - Per-question: `yes_rate` = YES count / `runs_with_evals_results * 100` |
Comment on lines
+134
to
+138
| | Status | Condition | | ||
| |---|---| | ||
| | **HEALTHY** | `overall_evals_job_success_rate >= 80%` AND `overall_yes_rate >= 60%` | | ||
| | **DEGRADED** | `overall_evals_job_success_rate` between 50–80%, OR `overall_yes_rate` between 30–60% | | ||
| | **BROKEN** | `overall_evals_job_success_rate < 50%`, OR zero evals runs found, OR evals job not producing any results | |
This was referenced Jul 15, 2026
Contributor
|
🎉 This pull request is included in a new release. Release: |
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.
Adds a daily scheduled workflow that monitors the
evalsfeature — BinEval YES/NO questions declared in workflow frontmatter and evaluated post-run — by aggregating results across the repository and publishing a health report.Workflow behavior
agentic-workflowsMCPlogswithartifacts: ["evals", "usage"]over the last 7 days (up to 100 runs); capped at 40 for analysis (results-first, then evals-job failures)evals.jsonlper run — extracts per-question YES/NO answers, detects runs where evals were declared but no artifact was produced (evals job failure)job_success ≥ 80%ANDyes_rate ≥ 60%), DEGRADED, or BROKENOutput
gh aw audit, artifact checks, credit budget checks)noopIssues use
close-older-issues: truewithtitle-prefix: "[evals] "— one rolling issue per day, expiring after 7 days.