-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 1.22 KB
/
Copy path.env.example
File metadata and controls
25 lines (20 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copy to .env and fill in. .env is gitignored — the PAT must never be committed.
# Fine-grained PAT. You have to create this yourself in the GitHub UI:
# Settings > Developer settings > Personal access tokens > Fine-grained tokens
# Repository access : Only select repositories -> utilityvault
# Permissions : Administration -> Read and write (nothing else needed)
# This token is used ONLY to mint short-lived registration tokens; it is never
# handed to the runner process or to workflow jobs.
ACCESS_TOKEN=github_pat_replace_me
# Which repo this runner serves. Changing this line + `docker compose up -d
# --force-recreate` is all it takes to point the runner at a different repo —
# registration is scoped by this API call, not by where these files live.
REPO_URL=https://github.com/OWNER/
# Shown in repo Settings > Actions > Runners.
RUNNER_NAME=android-runner-1
# Custom labels only — config.sh adds self-hosted, Linux and X64 automatically.
# Whatever you put here must match `runs-on:` in the workflows.
RUNNER_LABELS=android,utilityvault-android
# post-job.sh prunes build output once the workspace exceeds this. Raise it if
# you have disk to spare and want warmer incremental builds.
BUILD_CACHE_MAX_MB=5000