Migrated all 80 app JSON files to place config_path inside each install_methods object instead of at the root level. This allows different install methods (e.g. Debian vs Alpine) to have distinct config paths. Also updated AGENTS.md JSON structure example to reflect the change.
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "GitHub Runner",
|
|
"slug": "github-runner",
|
|
"categories": [
|
|
20
|
|
],
|
|
"date_created": "2026-03-04",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": null,
|
|
"documentation": "https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners",
|
|
"website": "https://github.com/actions/runner",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/github.webp",
|
|
"description": "GitHub Actions self-hosted runner executes workflows for your repository or organization, enabling CI/CD, builds, and deployments.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/github-runner.sh",
|
|
"config_path": "/opt/actions-runner",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 8,
|
|
"os": "Debian",
|
|
"version": "12"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "Get your token: repo Settings → Actions → Runners → New self-hosted runner → copy the token.",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "Then run: cd /opt/actions-runner && sudo -u runner ./config.sh --url https://github.com/your-username/your-repo --token <YOUR_TOKEN>",
|
|
"type": "info"
|
|
},
|
|
{
|
|
"text": "Start the runner: systemctl start actions-runner",
|
|
"type": "info"
|
|
}
|
|
]
|
|
}
|