feat(ci): add agentic workflow config-sync-checker#224
Merged
YousefHadder merged 2 commits intomainfrom Mar 7, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new daily agentic workflow (config-sync-checker) that verifies the 4 canonical config files stay in sync (types, validation, defaults, and vimdoc), and opens a GitHub issue when they drift. As a side-effect, gh aw compile bumped gh-aw from v0.53.6 → v0.54.0 in the maintenance and daily-doc-updater lockfiles.
Changes:
- New
config-sync-checker.mdworkflow with 3-phase analysis (extract fields → cross-reference → report/exit), severity-based categorization, andskip-if-matchdedup - Auto-generated
config-sync-checker.lock.ymllockfile produced bygh aw compile - Version bump of gh-aw from v0.53.6 to v0.54.0 in
daily-doc-updater.lock.ymlandagentics-maintenance.yml
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/config-sync-checker.md |
New agentic workflow definition with agent instructions for config consistency checking across 4 canonical files |
.github/workflows/config-sync-checker.lock.yml |
Auto-generated lockfile for the new config-sync-checker workflow |
.github/workflows/daily-doc-updater.lock.yml |
gh-aw version bump from v0.53.6 to v0.54.0 (SHA → tag refs) |
.github/workflows/agentics-maintenance.yml |
gh-aw version bump from v0.53.6 to v0.54.0 (SHA → tag refs) |
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.
Daily agentic workflow that checks the 4 canonical config files stay in sync and opens a GitHub issue when they drift.
The 4 files that must agree on every config option:
lua/markdown-plus/types.lua— LuaCATS type definitionslua/markdown-plus/config/validate.lua— validation schemalua/markdown-plus/init.lua— default valuesdoc/markdown-plus.txt— vimdoc documentationThe workflow runs 3 phases:
[config-sync]issue with fix instructions, or exits cleanly if everything is in syncAlso includes
skip-if-matchto prevent duplicate issues when one is already open.Side-effect:
gh aw compilebumped gh-aw from v0.53.6 → v0.54.0 in the maintenance and daily-doc-updater lock files.Tested by running
gh aw compile— 0 errors, 0 warnings, valid YAML output.