chore: sync actions from gh-aw@v0.87.9 - #220
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Syncs setup actions from gh-aw v0.87.9.
Changes:
- Adds enclave GitHub proxy lifecycle support.
- Adds Windows setup and Copilot CLI installation support.
- Hardens runtime imports and updates MCP configuration handling.
Show a summary per file
| File | Description |
|---|---|
setup/sh/stop_enclave_github_proxy.sh |
Stops the enclave proxy and clears credentials. |
setup/sh/start_enclave_github_proxy.sh |
Starts and validates the enclave proxy. |
setup/sh/install_copilot_cli.sh |
Adds Windows CLI installation support. |
setup/sh/check_mcp_servers.sh |
Supports deferred MCP readiness checks. |
setup/setup.sh |
Normalizes Git Bash paths. |
setup/js/runtime_import.cjs |
Adds hashed expressions and symlink containment. |
setup/js/generate_git_bundle.cjs |
Disables hooks during bundle creation. |
setup/js/frontmatter_hash_pure.cjs |
Hashes expressions from runtime imports. |
setup/js/convert_gateway_config_copilot.cjs |
Converts timeout units for Copilot. |
setup/index.js |
Explicitly invokes setup through Bash. |
Review details
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
- Files reviewed: 10/10 changed files
- Comments generated: 2
- Review effort level: Balanced
Comment on lines
+540
to
+541
| const normalized = baseDir.replace(/\\/g, "/"); | ||
| const markerIndex = normalized.indexOf("/.github/"); |
| return [path.join(workspaceRoot, normalized)]; | ||
| } | ||
|
|
||
| return [path.join(workspaceRoot, ".github", normalized), path.join(workspaceRoot, ".github", "workflows", normalized), path.join(baseDir, normalized)].map(p => path.normalize(p)).filter((p, index, all) => all.indexOf(p) === index); |
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.87.9.