chore: sync actions from gh-aw@v0.79.3#147
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Automated sync from github/gh-aw@v0.79.3 that refines agent error detection/messaging, improves GitHub rate-limit observability during guardrail execution, and adds a checkout-manifest builder to capture multi-repo checkout metadata.
Changes:
- Generalize “model not supported” handling to cover invalid/unknown/unavailable model names across engines, and prevent pointless retries in harnesses.
- Extend rate-limit logging to return a core snapshot and add start/end snapshots around the daily AIC guardrail inspection window.
- Add a
build_checkout_manifest.cjshelper to generate a checkout manifest JSON for downstream consumers.
Show a summary per file
| File | Description |
|---|---|
| setup/md/model_not_supported_error.md | Updates the warning copy to reflect invalid/unsupported model configuration (engine-agnostic wording). |
| setup/js/github_rate_limit_logger.cjs | Enhances rate-limit snapshot helper to also return core rate-limit data for in-memory tracking. |
| setup/js/detect_agent_errors.cjs | Broadens model error detection and makes execution conditional on require.main. |
| setup/js/codex_harness.cjs | Stops retrying on detected invalid/unsupported model configuration. |
| setup/js/claude_harness.cjs | Stops retrying on detected invalid/unsupported model configuration. |
| setup/js/check_daily_aic_workflow_guardrail.cjs | Logs before/after rate-limit snapshots to measure guardrail rate-limit consumption. |
| setup/js/build_checkout_manifest.cjs | New utility to write a checkout-manifest JSON including default-branch resolution. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 7/7 changed files
- Comments generated: 1
| const manifestDir = path.join(runnerTemp, "gh-aw"); | ||
| fs.mkdirSync(manifestDir, { recursive: true }); | ||
| const manifestPath = path.join(manifestDir, "checkout-manifest.json"); | ||
| const manifest = {}; |
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.
Automated sync of actions from gh-aw at
v0.79.3.