Skip to content

Commit 9cec686

Browse files
committed
Fix json schema action
1 parent 9224da1 commit 9cec686

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/jsonschema.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ jobs:
4545
set -e
4646
find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml" -print0 | while IFS= read -r -d '' i;
4747
do
48+
if [[ "$i" =~ 4\.[0-9]+ ]]; then
49+
echo "Skipping $i"
50+
continue
51+
fi
4852
echo "$i"
4953
# disable shellcheck of single quotes in yq
5054
# shellcheck disable=2016

0 commit comments

Comments
 (0)