Skip to content

Commit be58571

Browse files
committed
fix: ensure all values files are validated
Signed-off-by: Chris Butler <[email protected]>
1 parent c239915 commit be58571

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/jsonschema.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
3939
- name: Verify ClusterGroup values.schema.json against values-*yaml files
4040
run: |
41-
set -e; for i in values-hub.yaml values-group-one.yaml; do
41+
set -e
42+
find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml" -print0 | while IFS= read -r -d '' i;
43+
do
4244
echo "$i"
4345
# disable shellcheck of single quotes in yq
4446
# shellcheck disable=2016

0 commit comments

Comments
 (0)