### Required Environment Variables for Runner Source: https://github.com/tradeskillmaster/do-actions-runner/blob/main/README.md Environment variables are crucial for configuring the Actions Runner. The TOKEN variable requires a GitHub personal access token with appropriate scopes. OWNER/REPO are for repository-level runners, while ORG is for organization-level runners. ```shell export TOKEN="your_github_personal_access_token" export OWNER="your_repository_owner" export REPO="your_repository_name" # For organization-level runners, use ORG instead of OWNER and REPO: # export ORG="your_organization_name" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.