feat: ignore oci repo
All checks were successful
renovate / renovate (push) Successful in 1m33s

This commit is contained in:
2026-03-14 23:26:46 -05:00
parent 9099d66bd8
commit ed57ae842b

View File

@@ -208,7 +208,10 @@ jobs:
| tail -n +2 \
| awk 'NF > 0 { print $1, $3 }' \
| while read -r REPO_NAME REPO_URL; do
if [[ -n "${REPO_NAME}" && -n "${REPO_URL}" ]]; then
if [[ "${REPO_URL}" == oci://* ]]; then
echo ">> Ignoring OCI repo: ${REPO_URL}"
elif [[ -n "${REPO_NAME}" && -n "${REPO_URL}" ]]; then
helm repo add "${REPO_NAME}" "${REPO_URL}"
fi