ignore oci in lint test
All checks were successful
renovate / renovate (push) Successful in 29s

This commit is contained in:
2025-12-15 14:12:41 -06:00
parent 7379fbefa2
commit a630a2cda2

View File

@@ -170,7 +170,13 @@ jobs:
helm dependency list --max-col-width 120 charts/$dir 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do echo "$cmd" | sh; done || true
| while read cmd; do
if [[ "$cmd" == "helm repo add oci:*" ]]; then
echo ">> Ignoring OCI repo"
else
echo "$cmd" | sh;
fi
done || true
done
if helm repo list | tail +2 | read -r; then