Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/forge/sandbox/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ def _build_env_vars(
if container_skill_paths:
env["AGENT_SKILL_PATHS"] = container_skill_paths

# Pass GitHub token for git push and API access
env["GITHUB_TOKEN"] = self.settings.github_token.get_secret_value()

# Pass git configuration for commits
env["GIT_USER_NAME"] = self.settings.git_user_name
env["GIT_USER_EMAIL"] = self.settings.git_user_email
Expand Down
Loading