🐛 Add missing .lock.yml files for gh-aw workflows#6
🐛 Add missing .lock.yml files for gh-aw workflows#6clubanderson wants to merge 1 commit intomainfrom
Conversation
The .md workflow files were added but gh aw compile was never run to generate the corresponding .lock.yml files. Without these, the agentic workflows cannot execute. Any repo created from this template inherits the same gap (e.g. secure-inference). Signed-off-by: Andrew Anderson <andy@clubanderson.com>
|
/lgtm |
|
Cannot approve the pull request: TypeError: Cannot read properties of null (reading 'includes') |
|
Cannot apply the lgtm label because TypeError: Cannot read properties of null (reading 'includes') |
There was a problem hiding this comment.
Pull request overview
This pull request adds three missing compiled workflow files (.lock.yml) that were omitted when the corresponding source .md workflow files were previously added to the repository. These .lock.yml files are auto-generated by gh aw compile and are required for the GitHub Agentic Workflows (gh-aw) framework to execute properly.
Changes:
- Added upstream-monitor.lock.yml for daily upstream dependency monitoring
- Added typo-checker.lock.yml for PR-based typo checking
- Added link-checker.lock.yml for PR-based link validation
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/upstream-monitor.lock.yml | Compiled workflow for monitoring upstream dependencies on a daily schedule, creating issues for breaking changes |
| .github/workflows/typo-checker.lock.yml | Compiled workflow for checking typos in pull requests with AI-powered suggestions |
| .github/workflows/link-checker.lock.yml | Compiled workflow for validating links in markdown files changed in pull requests |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Superseded by centralized nightly checks in llm-d/llm-d-infra#83. Per-repo gh-aw workflows will be removed via separate deletion PRs. |
The .md workflow files for link-checker, typo-checker, and upstream-monitor were added but
gh aw compilewas never run. Without the .lock.yml files, the agentic workflows cannot execute. Every repo created from this template (e.g. secure-inference) inherits the same gap.