-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathall.yaml
21 lines (19 loc) · 892 Bytes
/
all.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
default_devcontainer_customizations_vscode:
extensions:
- xdebug.php-debug
- bmewburn.vscode-intelephense-client
- mrmlnc.vscode-apache
- 74th.json-yaml-schema-selector
settings:
"php.validate.executablePath": /usr/local/bin/php
"yaml.schemas":
"https://raw.githubusercontent.com/linkorb/repo-ansible/main/repo.schema.yaml":
- repo.yaml
# YAML extension by RedHat that prompts on each new devcontainer to enable telemetry
"redhat.telemetry.enabled": false
default_docker_build_args:
PACKAGIST_USER: token
PACKAGIST_TOKEN: "{{ '${{ secrets.PACKAGIST_TOKEN }}' }}"
# XXX we need this intricate value escaping in here, because Ansible will try to evaluate the value when we
# merge this default with any user provided build args. Since GitHub workflow secrets look very much like Jinja2
# template interpolation, playbook will fail.