fix(workflow): correct api-proxy IP address in smoke-codex.lock.yml#826
Merged
lpcox merged 2 commits intoclaude/enable-api-proxy-by-defaultfrom Feb 13, 2026
Conversation
Fix typo in allowlist: 172.30.0.1 → 172.30.0.30 - Line 1375: --allow-domains now includes correct api-proxy IP - Line 1427: GH_AW_ALLOWED_DOMAINS now includes correct api-proxy IP This allows the agent container to properly communicate with the api-proxy sidecar at 172.30.0.30 on ports 10000 (OpenAI) and 10001 (Anthropic) as documented in the codebase. Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes the GitHub Actions Codex smoke-test workflow’s API proxy sidecar allowlist by correcting the internal sidecar IP from 172.30.0.1 (host gateway) to the documented api-proxy address 172.30.0.30, aligning the workflow with the api-proxy network topology used by AWF.
Changes:
- Update the
awf --allow-domainsallowlist entry from172.30.0.1to172.30.0.30. - Update the
GH_AW_ALLOWED_DOMAINSenvironment variable from172.30.0.1to172.30.0.30.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Feb 13, 2026
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.
The workflow allowlist contained incorrect IP
172.30.0.1instead of api-proxy's actual address172.30.0.30, preventing agent communication with the sidecar on ports 10000 (OpenAI) and 10001 (Anthropic).Changes
--allow-domainsparameter:172.30.0.1→172.30.0.30GH_AW_ALLOWED_DOMAINSenvironment variable:172.30.0.1→172.30.0.30The ports (10000, 10001) were already correct - only the IP needed correction to match the documented api-proxy sidecar address at
172.30.0.30.