Files
importer-labs/.devcontainer/devcontainer.json
T

19 lines
490 B
JSON
Raw Normal View History

2022-05-10 14:32:07 -07:00
{
2022-11-02 21:02:30 -07:00
"name": "Codespace to perform GitHub Actions Importer Labs",
2022-09-19 14:02:05 -07:00
"remoteEnv": {
2022-09-19 15:19:57 -07:00
"DOCKER_ARGS": "--network=host",
"INSTALLATION_TYPE": "labs"
2022-09-19 14:02:05 -07:00
},
"customizations": {
"vscode": {
"settings": {
2022-09-19 16:46:46 -07:00
"files.autoSave": "onFocusChange",
"editor.tabSize": 2
2022-09-19 14:02:05 -07:00
},
"extensions": [
"ms-azuretools.vscode-docker"
]
}
},
2022-11-02 21:02:30 -07:00
"postCreateCommand": "gh extension install github/gh-actions-importer || echo 'Could not auto-build. Skipping.' "
2022-09-19 14:02:05 -07:00
}