chore: recompile all workflows#7766
Open
lpcox wants to merge 1 commit into
Open
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refreshes generated GitHub Actions workflow lock files after recompiling against gh-aw CLI v0.79.6, ensuring pinned manifests/metadata align with the current compiler output.
Changes:
- Updated multiple workflow
.lock.ymlfiles with regenerated metadata/manifests (including pinned model and max AI credits defaults). - Normalized engine/model fields in some lock files to match the workflow source frontmatter.
- Adjusted the
agentics-maintenance.ymlforecast step timeout behavior (but currently leaves inconsistent timeout handling logic).
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/repo-assist.lock.yml | Regenerated lock content; updates default GH_AW_MAX_AI_CREDITS fallback to 1000. |
| .github/workflows/nightly-schema-updater.lock.yml | Regenerated lock content; pins Copilot model/engine model to gpt-5.4 per workflow source. |
| .github/workflows/large-payload-tester.lock.yml | Regenerated lock metadata header formatting. |
| .github/workflows/github-mcp-guard-coverage-checker.lock.yml | Regenerated lock content/metadata and normalizes model quoting; adds trailing newline. |
| .github/workflows/agentics-maintenance.yml | Modifies forecast report step timeouts/command invocation (needs follow-up to keep timeout handling consistent). |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 5/5 changed files
- Comments generated: 2
Comment on lines
487
to
492
| mkdir -p ./.cache/gh-aw/forecast | ||
| set +e | ||
| timeout 30m ${GH_AW_CMD_PREFIX} forecast --repo "${{ github.repository }}" --timeout 30 --verbose --json > ./.cache/gh-aw/forecast/report.json | ||
| ${GH_AW_CMD_PREFIX} forecast --repo "${{ github.repository }}" --timeout 30 --verbose --json > ./.cache/gh-aw/forecast/report.json | ||
| forecast_exit_code=$? | ||
| set -e | ||
| if [ "${forecast_exit_code}" -eq 124 ]; then |
Comment on lines
478
to
481
| - name: Generate forecast report | ||
| id: generate_forecast_report | ||
| timeout-minutes: 31 | ||
| timeout-minutes: 30 | ||
| shell: bash |
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.
Recompiled all 33 workflows against current gh-aw CLI (v0.79.6). Minor lock file updates in 5 files.