mirror of
https://github.com/actions/runner.git
synced 2025-12-25 02:47:19 +08:00
* Add in workflow to automatically generate dotnet SDK patches * Update workflow to move the creation of the PR until all the hashes have been compiled and added to the path * Update upgrade to run not in parallel to prevent git command overlaps * Update for tings feedback and do better user error handling * JSON spec doesn't have comments * Has to use the outputs to proxy variables between the runs * Wrong output variable * Be more explicit on the branch check * Fix comments and json output * Missed variable name in rename * Fix race condition on jq write * Update for comments and more optimized hash updates * Need to forcibly exit for state to be detected * Fixed the failure to use a variable instead
24 lines
585 B
JSON
24 lines
585 B
JSON
{
|
|
"name": "Actions Runner Devcontainer",
|
|
"image": "mcr.microsoft.com/devcontainers/base:focal",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
|
|
"ghcr.io/devcontainers/features/dotnet": {
|
|
"version": "6.0.412"
|
|
},
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"version": "16"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-azuretools.vscode-docker",
|
|
"ms-dotnettools.csharp",
|
|
"eamodio.gitlens"
|
|
]
|
|
}
|
|
},
|
|
"postCreateCommand": "dotnet restore src/Test && dotnet restore src/Runner.PluginHost",
|
|
"remoteUser": "vscode"
|
|
} |