chore: sync actions from gh-aw@v0.82.8#185
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Syncs setup assets from gh-aw v0.82.8, expanding safe-output handling, authentication, diagnostics, and runtime resilience.
Changes:
- Adds disclosure headers, OAuth diagnostics, and Docker socket resolution.
- Improves safe-output evaluation, sub-issue linking, and Git authentication.
- Adds Copilot watchdog behavior and runtime/model updates.
Show a summary per file
| File | Description |
|---|---|
setup/sh/resolve_docker_socket_gid.sh |
Resolves Docker socket path and GID |
setup/sh/resolve_docker_socket_gid_test.sh |
Tests socket resolution |
setup/sh/conclude_threat_detection.sh |
Adds detector-status diagnostics |
setup/sh/check_oauth_tokens.sh |
Exposes OAuth-check failure output |
setup/md/safe_outputs_disclosure_header.md |
Adds disclosure template |
setup/md/oauth_token_check_failed.md |
Adds OAuth remediation guidance |
setup/md/agent_failure_issue.md |
Includes OAuth failure context |
setup/md/agent_failure_comment.md |
Includes OAuth failure context |
setup/js/sub_issue_helpers.cjs |
Centralizes sub-issue GraphQL helpers |
setup/js/process_runner.cjs |
Adds post-result watchdog |
setup/js/models.json |
Adds GPT-5.6 model variants |
setup/js/messages.cjs |
Exports disclosure header helper |
setup/js/messages_header.cjs |
Renders disclosure headers |
setup/js/messages_core.cjs |
Documents disclosure configuration |
setup/js/link_sub_issue.cjs |
Reuses sub-issue helper |
setup/js/handle_agent_failure.cjs |
Reports OAuth-token failures |
setup/js/git_auth_helpers.cjs |
Manages persisted Git credentials |
setup/js/extra_empty_commit.cjs |
Adds API-based signed empty commits |
setup/js/evaluate_outcomes.cjs |
Evaluates close operations and labels |
setup/js/dynamic_checkout.cjs |
Reuses Git authentication helper |
setup/js/create_pull_request.cjs |
Adds disclosure headers |
setup/js/create_issue.cjs |
Adds disclosures and shared linking |
setup/js/create_discussion.cjs |
Adds disclosure headers |
setup/js/copilot_harness.cjs |
Arms terminal-output watchdog |
setup/js/convert_gateway_config_claude.cjs |
Removes unsupported Claude field |
setup/js/check_permissions_utils.cjs |
Narrows confused-deputy detection |
setup/js/add_workflow_run_comment.cjs |
Supports PR review events |
setup/js/add_comment.cjs |
Adds disclosure headers to comments |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 28/28 changed files
- Comments generated: 4
- Review effort level: Medium
Comment on lines
+955
to
+959
| postResultWatchdog: safeOutputsPath | ||
| ? { | ||
| shouldArm: () => hasTerminalSafeOutput(safeOutputsPath), | ||
| inactivityTimeoutMs: POST_RESULT_WATCHDOG_IDLE_TIMEOUT_MS, | ||
| } |
| * @returns {Promise<number|null>} - Sub-issue count or null if query failed | ||
| */ | ||
| async function getSubIssueCount(owner, repo, issueNumber) { | ||
| async function getSubIssueCount(owner, repo, issueNumber, githubClient = undefined) { |
Comment on lines
+546
to
+547
| function evaluateCloseIssue(item, defaultRepo, api = ghAPI, nowMs = Date.now()) { | ||
| const repo = getItemRepo(item, defaultRepo); |
Comment on lines
+618
to
+619
| function evaluateClosePullRequest(item, defaultRepo, api = ghAPI, nowMs = Date.now()) { | ||
| const repo = getItemRepo(item, defaultRepo); |
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.82.8.