From 39c280bfdbaa908c1f169a977ae87cbebaec3fbb Mon Sep 17 00:00:00 2001 From: "claude[bot]" <209825114+claude[bot]@users.noreply.github.com> Date: Sat, 31 May 2025 00:11:56 +0000 Subject: [PATCH] feat: add claude_env input for custom environment variables Co-authored-by: ashwin-ant --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index d544f67..a749eeb 100644 --- a/action.yml +++ b/action.yml @@ -41,6 +41,8 @@ inputs: default: "" mcp_config: description: "Additional MCP configuration (JSON string) that merges with the built-in GitHub MCP servers" + claude_env: + description: "Custom environment variables to pass to Claude Code execution (YAML format)" required: false default: "" @@ -114,6 +116,7 @@ runs: use_bedrock: ${{ inputs.use_bedrock }} use_vertex: ${{ inputs.use_vertex }} anthropic_api_key: ${{ inputs.anthropic_api_key }} + claude_env: ${{ inputs.claude_env }} env: # Model configuration ANTHROPIC_MODEL: ${{ inputs.model || inputs.anthropic_model }}