-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
23 lines (23 loc) · 854 Bytes
/
app.json
File metadata and controls
23 lines (23 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "heroku-github-actions-runner",
"description": "Heroku Docker GitHub Actions Runner",
"repository": "https://github.com/abernicchia-heroku/heroku-github-actions-runner.git",
"keywords": ["heroku", "github", "actions", "workflow", "self-hosted", "runner", "heroku"],
"stack": "container",
"env": {
"GITHUB_ORGANIZATION": {
"required": true,
"description": "GitHub organization for which to attach our Heroku dynos as GitHub Action runners."
},
"GITHUB_ACCESS_TOKEN": {
"required": true,
"description": "Personal access token with 'admin:org' and 'repo' scopes. Used to attach Heroku dynos as GitHub Action runners."
}
},
"formation": {
"runner": {
"quantity": 1,
"size": "private-m"
}
}
}