Skip to content

Register nvx as an opt-in preview runtime - #8924

Merged
lpcox merged 3 commits into
mainfrom
copilot/register-nvx-preview-runtime
Sep 23, 2026
Merged

lpcox merged 3 commits into
mainfrom
copilot/register-nvx-preview-runtime

Conversation

Copilot AI commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

NVX (OpenVMM microVM backend) had its Phase 3f security/cleanup contract validated internally, but was reserved and unreachable from the CLI. This registers nvx as a selectable, explicitly preview-gated runtime without changing the default runtime or ever falling back to another backend on failure.

Runtime selection

  • --container-runtime nvx selects the runtime; execution additionally requires explicit --nvx-preview (or nvx.previewEnabled: true in the config file). Either alone fails closed with an actionable error before any resources are touched.
  • Removed the old reserved-name mechanism that blocked nvx outright; it is now a fully registered microvm execution model in the runtime capability registry.
  • Any validation, host-eligibility, or artifact failure aborts the run (process.exit(1)) — unlike Cloud Hypervisor, there is no fallback path to Docker or any other backend.

Runtime integration

  • Added src/nvx/runtime-backend.ts, an ExternalAgentRuntimeBackend adapter bridging the existing, unmodified NvxManager one-shot contract (atomic preflight → launch → execute → cleanup) into the same seam used by sbx and Cloud Hypervisor. Because execute() is atomic, start() only brings up host infra (Squid/API-proxy); the microVM itself is created and torn down inside exec(), and stop() aborts and awaits any in-flight execution.
  • Reuses the existing artifact-verification path unchanged (release tag, manifest, signer workflow).

Host eligibility and fail-closed behavior

  • Added src/nvx/runtime-validation.ts: Linux x86_64 + KVM eligibility check, and rejection of incompatible combinations (--tty, Docker-in-Docker/split-fs, host access, extra volume mounts, DIFC proxy, DNS-over-HTTPS, enclaves) and incomplete artifact configuration — each with a specific, actionable error.

Configuration and CLI

  • New NvxOptions type, config-file section, JSON schema entries, and 12 CLI flags (--nvx-preview, --nvx-layer, --nvx-artifact-manifest[-bundle], --nvx-signer-workflow, --nvx-openvmm, --nvx-kernel, --nvx-initramfs, --nvx-memory-mib, --nvx-memory-max-bytes, --nvx-pids-max, --nvx-scratch-bytes), wired through config-mapper.ts and build-config.ts.
awf --container-runtime nvx --nvx-preview \
  --nvx-layer ./distro.layer --nvx-openvmm ./openvmm --nvx-kernel ./vmlinux --nvx-initramfs ./initramfs \
  --nvx-artifact-manifest ./manifest.json --nvx-artifact-manifest-bundle ./manifest.sigstore.jsonl \
  -- echo hello

Known limitation

The one-shot adapter has no per-run env passthrough to the guest (only entrypoint/args/network egress rules). Any environment the agent command needs (including proxy settings) must be pre-baked into the guest layer supplied via --nvx-layer. This is documented as a deliberate boundary of the validated contract, not an oversight.

Documentation

  • docs/nvx-security-design.md: new "Runtime registration (opt-in preview)" section plus troubleshooting guidance.
  • docs/awf-config-spec.md: config/CLI mapping table entries for nvx.*.
  • README.md: reference entry alongside the Cloud Hypervisor preview link.

Copilot AI linked an issue Sep 23, 2026 that may be closed by this pull request
Copilot AI changed the title [WIP] Register NVX as an opt-in preview runtime Register nvx as an opt-in preview runtime Sep 23, 2026
Copilot AI requested a review from lpcox September 23, 2026 20:29
@lpcox
lpcox marked this pull request as ready for review September 23, 2026 22:01
Copilot AI balanced review requested due to automatic review settings September 23, 2026 22:01

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot review overview

🟡 Changes recommended

Multiple critical runtime correctness and security issues must be resolved before approval.

Get a fresh assessment by requesting another Copilot review.

Review effort: Balanced
Findings: 6 High severity · 5 Medium severity · 1 Low severity

Open (12)
What changed in this PR

Registers NVX/OpenVMM as an opt-in preview microVM runtime with CLI/configuration support, validation, backend integration, tests, schemas, and documentation.

Changes:

  • Adds NVX runtime registration and preview gating.
  • Integrates NvxManager through an external runtime backend.
  • Adds compatibility checks, configuration options, tests, and documentation.
File Review
src/​types/​runtime-options.ts Defines NVX options and defaults.
src/​types/​index.ts Exports NVX types and constants.
src/​nvx/​runtime-validation.ts Adds compatibility and host checks. Must reject custom network subnets before resources are created.
src/​nvx/​runtime-validation.test.ts Tests NVX validation behavior.
src/​nvx/​runtime-lifecycle.test.ts Updates runtime registration coverage.
src/​nvx/​runtime-backend.ts Adds the NVX backend adapter. Critical issues include broken multi-word commands, mismatched scratch ownership, missing workspace/cwd support, unsafe PATH-based tool discovery, shutdown races, and stale infrastructure use. It also mishandles scratch-size normalization, discards the guest environment, omits topology peers, misses post-probe compatibility validation, mishandles custom subnets, and does not quiesce preserved executions.
src/​nvx/​runtime-backend.test.ts Tests backend lifecycle and mapping.
src/​external-runtime-backend.test.ts Tests NVX backend resolution and gating.
src/​external-runtime-backend-resolver.ts Registers the NVX backend factory.
src/​container-runtime.ts Registers NVX microVM capabilities.
src/​container-runtime.test.ts Tests NVX capability behavior.
src/​config-mapper.ts Maps NVX configuration to CLI options.
src/​config-file.ts Adds NVX configuration-file fields.
src/​commands/​validators/​config-assembly.ts Applies NVX validation, but security-mode normalization can erase incompatible option intent before validation.
src/​commands/​build-config.ts Builds NVX runtime configuration.
src/​cli-options.ts Adds NVX CLI flags and help text.
src/​awf-config-schema.json Adds NVX schema definitions.
README.md Links to NVX preview documentation.
docs/​nvx-security-design.md Documents registration and troubleshooting, but uses the wrong runtime-selection key and incorrectly describes the signer workflow as required.
docs/​awf-config.schema.json Updates the published configuration schema.
docs/​awf-config-spec.md Documents NVX configuration mappings.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment thread src/nvx/runtime-backend.ts Outdated
Comment on lines +49 to +50
resolveInfrastructure: (enableApiProxy, ipPath) =>
resolveMicrovmInfrastructure(enableApiProxy, undefined, ipPath),
Comment on lines +146 to +149
this.infrastructure = await this.dependencies.resolveInfrastructure(
Boolean(this.config.enableApiProxy),
);
this.identity = this.dependencies.identity();
Comment on lines +158 to +163
const nvx = requireNvxConfig(this.config);
const infrastructure = this.infrastructure;
const identity = this.identity;
if (!infrastructure || !identity) {
throw new Error('NVX microVM infrastructure is not ready');
}
},
filesystem: {
workDir: this.config.workDir ?? '/run/awf-nvx',
layers: [{ role: 'distro', sourcePath: nvx.layerPath! }],
Comment on lines +212 to +215
filesystem: {
workDir: this.config.workDir ?? '/run/awf-nvx',
layers: [{ role: 'distro', sourcePath: nvx.layerPath! }],
scratchBytes: nvx.scratchBytes,
Comment on lines +146 to +148
this.infrastructure = await this.dependencies.resolveInfrastructure(
Boolean(this.config.enableApiProxy),
);
? undefined
: agentTimeoutMinutes * 60_000;

const manager = this.dependencies.createManager({
Comment thread src/nvx/runtime-backend.ts Outdated
Comment on lines +215 to +216
scratchBytes: nvx.scratchBytes,
maxScratchBytes: nvx.scratchBytes,
Comment on lines +46 to +49
if (!config.networkIsolation || config.legacySecurity) {
throw new Error('NVX preview requires strict --network-isolation security');
}
if (!config.enableApiProxy) {
Comment thread docs/nvx-security-design.md Outdated
Comment on lines +297 to +298
(`src/nvx/artifact-manifest.ts`, `src/nvx/preflight.ts`). All are required;
any missing value fails validation before launch.
@lpcox

lpcox commented Sep 23, 2026

Copy link
Copy Markdown
Collaborator

@copilot address the review feedback

Copilot AI commented Sep 23, 2026

Copy link
Copy Markdown
Contributor Author

@copilot address the review feedback

Addressed in 4dc4311:

  • Resolved ip through the trusted-tool preflight (resolveTrustedNvxHostTool) before infrastructure discovery, and call infrastructure.revalidate() immediately before launch.
  • Closed the stop()/exec() race so a new NvxManager can't be created after shutdown begins.
  • Fixed scratch image ownership (now matches workload uid/gid) and its size cap (no longer capped by its own requested value).
  • Threaded --topology-attach peers into infrastructure discovery and the guest control-peer allowlist.
  • Re-run the full assertNvxRuntimeCompatibility guard in preflight() so config mutated after assembly (e.g. auto-detected split-fs) is still caught.
  • Rejected --network-subnet and --container-workdir for NVX with actionable errors, and documented the host-workspace-export limitation.
  • Relaxed the one-shot arg validation so multi-word shell commands (e.g. sh -c "echo hello") work — args are unshelled argv entries, not shell-reinterpreted strings.
  • Fixed the --nvx-signer-workflow required/optional contradiction in docs/nvx-security-design.md.

All existing and new unit tests pass, plus a full typecheck.

@github-actions

Copy link
Copy Markdown
Contributor

✅ Copilot review passed with no inline comments.

@copilot Add the ready-for-aw label to this PR to trigger agentic CI smoke tests.

@github-actions

Copy link
Copy Markdown
Contributor

Documentation Preview

Documentation has been built for this PR.

Download preview artifact

To view locally:

  1. Download the docs-preview-pr-8924 artifact from the workflow run
  2. Unzip and open index.html in your browser

Built from commit b8dfcba

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

❌ Smoke Gemini reports failed. Facets need polishing...

💎 Faceted by Smoke Gemini

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

Chroot tests passed! Smoke Chroot - All security and functionality tests succeeded.

Tested by Smoke Chroot

@github-actions

Copy link
Copy Markdown
Contributor

🚀 Security Guard has started processing this pull request

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

📰 VERDICT: Smoke Copilot has concluded. All systems operational. This is a developing story. 🎤

📰 BREAKING: Report filed by Smoke Copilot

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

🔌 Smoke Services — All services reachable! ✅

🔌 Service connectivity validated by Smoke Services

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

✅ Smoke Claude passed

Warning

Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • api.anthropic.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "api.anthropic.com"

See Network Configuration for more information.

Generated by Smoke Claude for #8924

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

Smoke Cloud Hypervisor completed. Cloud Hypervisor + Copilot passed.

Warning

Firewall blocked 2 domains

The following domains were blocked by the firewall during workflow execution:

  • example.com
  • github.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "example.com"
    - "github.com"

See Network Configuration for more information.

Cloud Hypervisor + Copilot smoke test by Smoke Cloud Hypervisor

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

✅ Build Test Suite completed successfully!

Warning

Firewall blocked 7 domains

The following domains were blocked by the firewall during workflow execution:

  • bun.sh
  • dc.services.visualstudio.com
  • deno.land
  • dl.deno.land
  • github.com
  • releaseassets.githubusercontent.com
  • repo.maven.apache.org

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "bun.sh"
    - "dc.services.visualstudio.com"
    - "deno.land"
    - "dl.deno.land"
    - "github.com"
    - "releaseassets.githubusercontent.com"
    - "repo.maven.apache.org"

See Network Configuration for more information.

Generated by Build Test Suite for #8924

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

📡 Smoke OTel Tracing completed. All tracing scenarios validated. ✅

Warning

Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • o205451.ingest.us.sentry.io

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "o205451.ingest.us.sentry.io"

See Network Configuration for more information.

📡 OTel tracing validated by Smoke OTel Tracing

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

❌ Smoke Copilot BYOK AOAI (Entra) reports failed. AOAI BYOK (Entra) mode investigation needed...

🪪 BYOK (AOAI Entra) report filed by Smoke Copilot BYOK AOAI (Entra)

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

✅ Smoke Copilot BYOK completed. Copilot BYOK mode operational. 🔓

🔑 BYOK report filed by Smoke Copilot BYOK

@github-actions

github-actions Bot commented Sep 23, 2026 •

Copy link
Copy Markdown
Contributor

✨ The prophecy is fulfilled... Smoke Codex has completed its mystical journey. The stars align. 🌟

Warning

Firewall blocked 13 domains

The following domains were blocked by the firewall during workflow execution:

  • ab.chatgpt.com
  • accounts.google.com
  • android.clients.google.com
  • api.github.com
  • clients2.google.com
  • collector.github.com
  • contentautofill.googleapis.com
  • github.com
  • github.githubassets.com
  • msfeed25.pkgs.visualstudio.com
  • update.googleapis.com
  • www.google.com
  • www.gstatic.com

[!TIP]
api.github.com is blocked because GitHub API access uses the built-in GitHub tools by default. Instead of adding api.github.com to network.allowed, use tools.github.mode: gh-proxy for direct pre-authenticated GitHub CLI access without requiring network access to api.github.com:

tools:
  github:
    mode: gh-proxy

See GitHub Tools for more information on gh-proxy mode.

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "ab.chatgpt.com"
    - "accounts.google.com"
    - "android.clients.google.com"
    - "api.github.com"
    - "clients2.google.com"
    - "collector.github.com"
    - "contentautofill.googleapis.com"
    - "github.com"
    - "github.githubassets.com"
    - "msfeed25.pkgs.visualstudio.com"
    - "update.googleapis.com"
    - "www.google.com"
    - "www.gstatic.com"

See Network Configuration for more information.

🔮 The oracle has spoken through Smoke Codex

@github-actions

Copy link
Copy Markdown
Contributor

Smoke Test: Claude Engine Validation

Check Result
API status ✅ PASS
gh check ✅ PASS
File status ✅ PASS

Overall result: PASS

Warning

Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • api.anthropic.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "api.anthropic.com"

See Network Configuration for more information.

Generated by Smoke Claude for #8924 · claude · haiku45 · 55.8 AIC · ⊞ 4.7K · ◷
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

Smoke Test: Cloud Hypervisor + Copilot

Check Result
1. List merged PRs (github MCP) ✅ PASS — found PR #8925
2. curl https://github.com ✅ PASS — HTTP 200
3. Write/read temp file ✅ PASS
4. curl (example.com/redacted) (should be blocked) ✅ PASS — HTTP 000

Overall: PASS (4/4 checks succeeded)

Warning

Firewall blocked 2 domains

The following domains were blocked by the firewall during workflow execution:

  • example.com
  • github.com

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "example.com"
    - "github.com"

See Network Configuration for more information.

Cloud Hypervisor + Copilot smoke test by Smoke Cloud Hypervisor
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

Smoke Test: Copilot Engine — @lpcox

Overall: PASS

📰 BREAKING: Report filed by Smoke Copilot
Add label ready-for-aw to run again

@lpcox
lpcox enabled auto-merge (squash) September 23, 2026 23:21
@github-actions github-actions Bot added the smoke-copilot-network-isolation Copilot network-isolation egress smoke test label Sep 23, 2026
@github-actions

Copy link
Copy Markdown
Contributor

EGRESS_RESULT allow=pass deny=pass

✅ Allowed domain (github.com) reachable: allowed=200
✅ Blocked domain (example.com) denied: TLS intercepted/blocked → OK: example.com was blocked

Overall: PASS

cc @lpcox

Warning

Firewall blocked 2 domains

The following domains were blocked by the firewall during workflow execution:

  • api.github.com
  • example.com

[!TIP]
api.github.com is blocked because GitHub API access uses the built-in GitHub tools by default. Instead of adding api.github.com to network.allowed, use tools.github.mode: gh-proxy for direct pre-authenticated GitHub CLI access without requiring network access to api.github.com:

tools:
  github:
    mode: gh-proxy

See GitHub Tools for more information on gh-proxy mode.

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "api.github.com"
    - "example.com"

See Network Configuration for more information.

🛡️ Egress verdict from Smoke Copilot Network Isolation
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

Smoke Test Results

  • Redis PING: ✅ (PONG)
  • PostgreSQL pg_isready: ✅ (accepting connections)
  • PostgreSQL SELECT 1: ✅ (1)

Overall: PASS

🔌 Service connectivity validated by Smoke Services
Add label ready-for-aw to run again

@lpcox
lpcox deployed to aoai-model September 23, 2026 23:22 — with GitHub Actions Active
@lpcox
lpcox deployed to aoai-model September 23, 2026 23:22 — with GitHub Actions Active
@github-actions

Copy link
Copy Markdown
Contributor

Smoke Test: Copilot BYOK (Direct) Mode

✅ All Tests Pass

  • ✅ GitHub MCP: PR listing verified (latest merged PRs accessible)
  • ✅ HTTP Connectivity: Code 200 (github.com reachable)
  • ✅ File I/O: Smoke test file created and readable
  • ✅ BYOK Inference: Direct BYOK mode via api-proxy → api.githubcopilot.com

Mode: Direct BYOK (COPILOT_PROVIDER_API_KEY) with api-proxy credential injection
Status: PASS

🔑 BYOK report filed by Smoke Copilot BYOK
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

Chroot Version Comparison Results

Runtime Host Version Chroot Version Match?
Python Python 3.12.14 Python 3.12.14 ✅ YES
Node.js v24.21.0 v22.23.2 ❌ NO
Go go1.22.12 go1.22.12 ✅ YES

Overall: FAILED — Node.js version mismatch between host and chroot environments. smoke-chroot label not added.

Tested by Smoke Chroot
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

🏗️ Build Test Suite Results

Ecosystem Project Build/Install Tests Status
Bun elysia ✅ 1/1 passed ✅ PASS
Bun hono ✅ 1/1 passed ✅ PASS
C++ fmt ✅ N/A ✅ PASS
C++ json ✅ N/A ✅ PASS
Deno oak N/A 1/1 passed ✅ PASS
Deno std N/A 1/1 passed ✅ PASS
.NET hello-world ✅ N/A (ran, output "Hello, World!") ✅ PASS
.NET json-parse ✅ N/A ✅ PASS
Go color ✅ 1/1 passed ✅ PASS
Go env ✅ 1/1 passed ✅ PASS
Go uuid ✅ 1/1 passed ✅ PASS
Java gson ✅ 1/1 passed ✅ PASS
Java caffeine ✅ 1/1 passed ✅ PASS
Node.js clsx ✅ passed ✅ PASS
Node.js execa ✅ passed ✅ PASS
Node.js p-limit ✅ passed ✅ PASS
Rust fd ✅ 1/1 passed ✅ PASS
Rust zoxide ✅ 1/1 passed ✅ PASS

Overall: 8/8 ecosystems passed — ✅ PASS

Notes:

  • .NET json-parse project result: build/restore succeeded; recorded as N/A tests (console app, no test suite) — build success confirms functionality.
  • Java builds required overriding the local Maven repository path (-Dmaven.repo.local=/tmp/gh-aw/agent/m2repo) because ~/.m2 was pre-created as root-owned and not writable by the runner user in this environment. This is an environment/permissions quirk unrelated to the firewall itself; the Maven HTTP/HTTPS proxy config (squid-proxy:3128) worked correctly for dependency resolution.
  • All other projects built/tested without any workarounds needed.

Warning

Firewall blocked 7 domains

The following domains were blocked by the firewall during workflow execution:

  • bun.sh
  • dc.services.visualstudio.com
  • deno.land
  • dl.deno.land
  • github.com
  • releaseassets.githubusercontent.com
  • repo.maven.apache.org

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "bun.sh"
    - "dc.services.visualstudio.com"
    - "deno.land"
    - "dl.deno.land"
    - "github.com"
    - "releaseassets.githubusercontent.com"
    - "repo.maven.apache.org"

See Network Configuration for more information.

Generated by Build Test Suite for #8924 · copilot · auto · 35.2 AIC · ⊞ 11.8K · ◷
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

📡 OTel Tracing Smoke Test Results

# Scenario Result
1 Module Loading ✅ otel.js loaded; isEnabled() → true; exports: startRequestSpan, setTokenAttributes, setBudgetAttributes, endSpan, endSpanError, shutdown, isEnabled, _provider, _ProxyAwareOtlpExporter, _FileSpanExporter, _FanOutSpanExporter, _parseEndpoints, _parseOtlpHeaders, _buildResourceSpans, _createOtlpWorkloadIdentity
2 Test Suite ✅ 3 suites (otel.test.js, otel-fanout.test.js, otel-workload-identity.test.js) — 68/68 tests passed
3 Env Var Forwarding ✅ env-passthrough.ts forwards GITHUB_AW_OTEL_TRACE_ID / GITHUB_AW_OTEL_PARENT_SPAN_ID; api-proxy-env-config.ts forwards GH_AW_OTLP_ENDPOINTS, OTEL_EXPORTER_OTLP_ENDPOINT, and both trace context vars
4 Token Tracker Integration ✅ onUsage callback present in token-tracker-http.js as the OTEL hook point
5 OTEL Diagnostics ⚪ No otel.jsonl export file observed yet in this run (token-usage.jsonl has 26 records); expected pending — no errors surfaced, graceful degradation confirmed

All scenarios pass or are expected-pending. No regressions detected.

Warning

Firewall blocked 1 domain

The following domain was blocked by the firewall during workflow execution:

  • o205451.ingest.us.sentry.io

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "o205451.ingest.us.sentry.io"

See Network Configuration for more information.

📡 OTel tracing validated by Smoke OTel Tracing
Add label ready-for-aw to run again

@github-actions

Copy link
Copy Markdown
Contributor

Reviewed merged PRs:

Warning

Firewall blocked 13 domains

The following domains were blocked by the firewall during workflow execution:

  • ab.chatgpt.com
  • accounts.google.com
  • android.clients.google.com
  • api.github.com
  • clients2.google.com
  • collector.github.com
  • contentautofill.googleapis.com
  • github.com
  • github.githubassets.com
  • msfeed25.pkgs.visualstudio.com
  • update.googleapis.com
  • www.google.com
  • www.gstatic.com

[!TIP]
api.github.com is blocked because GitHub API access uses the built-in GitHub tools by default. Instead of adding api.github.com to network.allowed, use tools.github.mode: gh-proxy for direct pre-authenticated GitHub CLI access without requiring network access to api.github.com:

tools:
  github:
    mode: gh-proxy

See GitHub Tools for more information on gh-proxy mode.

To allow these domains, add them to the network.allowed list in your workflow frontmatter:

network:
  allowed:
    - defaults
    - "ab.chatgpt.com"
    - "accounts.google.com"
    - "android.clients.google.com"
    - "api.github.com"
    - "clients2.google.com"
    - "collector.github.com"
    - "contentautofill.googleapis.com"
    - "github.com"
    - "github.githubassets.com"
    - "msfeed25.pkgs.visualstudio.com"
    - "update.googleapis.com"
    - "www.google.com"
    - "www.gstatic.com"

See Network Configuration for more information.

🔮 The oracle has spoken through Smoke Codex
Add label ready-for-aw to run again

@lpcox
lpcox merged commit 2d0e755 into main Sep 23, 2026
156 of 161 checks passed
@lpcox
lpcox deleted the copilot/register-nvx-preview-runtime branch September 23, 2026 23:31

This branch was successfully deployed

1 active deployment
aoai-model — 4dc43118 Deployed Sep 23, 2026 by lpcox via conclusion #1749
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Register NVX as an opt-in preview runtime

3 participants