forked from devcontainers-extra/features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
29 lines (29 loc) 路 1.01 KB
/
Copy pathdevcontainer-feature.json
File metadata and controls
29 lines (29 loc) 路 1.01 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
26
27
28
29
{
"id": "actions-runner",
"version": "1.0.12",
"name": "GitHub Actions Runner",
"documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/actions-runner",
"description": "The runner is the application that runs a job from a GitHub Actions workflow. It is used by GitHub Actions in the hosted virtual environments, or you can self-host the runner in your own environment.",
"options": {
"version": {
"default": "latest",
"description": "Select the version to install.",
"proposals": [
"latest"
],
"type": "string"
},
"dotnetVersion": {
"default": "latest",
"description": "Select the dotnet version to install.",
"proposals": [
"latest"
],
"type": "string"
}
},
"installsAfter": [
"ghcr.io/devcontainers-extra/features/gh-release",
"ghcr.io/devcontainers/features/dotnet"
]
}