Conversation
|
We have a yaml linter in cagent-action that runs in CI, I wonder if it's a good idea here, too |
There was a problem hiding this comment.
Review Summary
✅ No issues found in the changed code.
This PR makes several legitimate improvements to the nightly scan workflow:
- Cron schedule update: Changes the scheduled run time from 6am to 2am UTC
- Timeout addition: Adds a sensible 30-minute timeout to prevent indefinite runs
- Input reference fix: Corrects the syntax from
inputs.dry-run(dot notation, which doesn't work with hyphenated names) toinputs['dry-run'](bracket notation, which is the correct approach for accessing workflow inputs with hyphens in GitHub Actions) - Quote standardization: Updates quotes for consistency
All changes are syntactically correct and the bracket notation fix actually resolves a latent bug in the original code where the dry-run input would not have been properly evaluated.
@derekmisler We could integrate one into the |
Lets do it! |
8ab1fdf to
d904b7a
Compare
|
@derekmisler @krissetto If there's anything I can help with, let me know |
|
we got it thanks |
Overview
This PR makes several updates to the nightly scan workflow (
.github/workflows/nightly-scan.yml) to improve reliability, correct scheduling, and satisfy YAML linting requirements.Changes Summary
Cron Schedule Update
Workflow Input Description Quote Standardization
Job Timeout Addition
Prompt Expression Fix to Satisfy YAML Linter
Testing