We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c239915 commit be58571Copy full SHA for be58571
.github/workflows/jsonschema.yaml
@@ -38,7 +38,9 @@ jobs:
38
39
- name: Verify ClusterGroup values.schema.json against values-*yaml files
40
run: |
41
- set -e; for i in values-hub.yaml values-group-one.yaml; do
+ set -e
42
+ find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml" -print0 | while IFS= read -r -d '' i;
43
+ do
44
echo "$i"
45
# disable shellcheck of single quotes in yq
46
# shellcheck disable=2016
0 commit comments