Skip to content

Deploy Daily Docs Review Workflow#97

Merged
zircote merged 2 commits intomainfrom
deploy-docs-workflow
Feb 23, 2026
Merged

Deploy Daily Docs Review Workflow#97
zircote merged 2 commits intomainfrom
deploy-docs-workflow

Conversation

@zircote
Copy link
Owner

@zircote zircote commented Feb 23, 2026

Deploying the daily documentation review agentic workflow.

@github-actions
Copy link
Contributor

Benchmark Results

No benchmarks configured. Add benchmarks to benches/ directory.

Full results available in CI artifacts.

@codecov
Copy link

codecov bot commented Feb 23, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 95.83%. Comparing base (3a8d58f) to head (8428bf9).
⚠️ Report is 3 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #97   +/-   ##
=======================================
  Coverage   95.83%   95.83%           
=======================================
  Files           9        9           
  Lines        6499     6499           
=======================================
  Hits         6228     6228           
  Misses        271      271           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions
Copy link
Contributor

Code Coverage Report

Overall Coverage: 0%

Summary

Filename                      Regions    Missed Regions     Cover   Functions  Missed Functions  Executed       Lines      Missed Lines     Cover    Branches   Missed Branches     Cover
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
client.rs                        1444                67    95.36%         118                13    88.98%         923                35    96.21%           0                 0         -
format.rs                        2172                 3    99.86%         132                 1    99.24%        1292                 1    99.92%           0                 0         -
main.rs                           326               241    26.07%          14                 8    42.86%         225               168    25.33%           0                 0         -
mcp/analytics.rs                  408                 2    99.51%          24                 0   100.00%         331                 0   100.00%           0                 0         -
mcp/mod.rs                        144                55    61.81%          23                15    34.78%         128                65    49.22%           0                 0         -
mcp/prompts.rs                   1908                33    98.27%         126                 6    95.24%        1043                12    98.85%           0                 0         -
mcp/resources.rs                 1317                20    98.48%          93                 1    98.92%         865                 6    99.31%           0                 0         -
mcp/tools.rs                     2146                90    95.81%         116                18    84.48%        1333                47    96.47%           0                 0         -
models.rs                        1079                31    97.13%          78                10    87.18%         762                14    98.16%           0                 0         -
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
TOTAL                           10944               542    95.05%         724                72    90.06%        6902               348    94.96%           0                 0         -

Full HTML report available in CI artifacts.

@zircote zircote merged commit 3656a48 into main Feb 23, 2026
38 checks passed
@zircote zircote deleted the deploy-docs-workflow branch February 23, 2026 04:52
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request deploys a new agentic workflow that performs daily documentation reviews. The workflow validates repository documentation against authoritative sources (github.com, githubnext.com, gh-aw resources) and can automatically create pull requests to fix inaccuracies.

Changes:

  • Adds daily-docs-review.md source file defining the agentic workflow with instructions for automated documentation validation
  • Adds daily-docs-review.lock.yml generated lockfile containing the full GitHub Actions workflow implementation

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.

File Description
.github/workflows/daily-docs-review.md Source workflow definition with schedule, permissions, tools, and instructions for the documentation review agent
.github/workflows/daily-docs-review.lock.yml Auto-generated GitHub Actions workflow lockfile (v0.47.1) implementing the full workflow with activation, agent, detection, conclusion, and safe_outputs jobs

2. **Scan Documentation**: Read through the `docs/` directory and `README.md`.
3. **Verify Claims**: For each key technical claim or feature description:
- **Skip** if verified successfully within the last 3 days (check memory).
- otherwise use `web-fetch` to check `github.com` and `githubnext.com` pages for the latest information.
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sentence starts with lowercase 'otherwise'. The instruction on line 55 should start with a capital letter for proper grammar and consistency with the other instruction steps. This should be "Otherwise use" instead of "otherwise use".

Suggested change
- otherwise use `web-fetch` to check `github.com` and `githubnext.com` pages for the latest information.
- Otherwise use `web-fetch` to check `github.com` and `githubnext.com` pages for the latest information.

Copilot uses AI. Check for mistakes.
Comment on lines +6 to +9
schedule:
- cron: 'daily'
workflow_dispatch:

Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid schedule syntax for agentic workflows. The cron syntax - cron: 'daily' is not valid for agentic workflow source files. Based on the pattern in other agentic workflow files (daily-qa.md, daily-repo-status.md, update-docs.md), the correct syntax should be schedule: daily (without the hyphen and cron prefix). The gh-aw compiler will convert this to proper GitHub Actions cron syntax in the lockfile.

Suggested change
schedule:
- cron: 'daily'
workflow_dispatch:
schedule: daily
workflow_dispatch:

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants