add repos
All checks were successful
renovate / renovate (push) Successful in 1m28s

This commit is contained in:
2025-12-01 23:14:35 -06:00
parent 4371c53508
commit 9f6469dd73
2 changed files with 10 additions and 2 deletions

View File

@@ -24,8 +24,6 @@ jobs:
- name: Lint Helm Chart
run: |
set -e # Exit immediately if a command exits with a non-zero status.
TARGET_BRANCH="origin/main"
echo ">> Target branch for diff is: $TARGET_BRANCH"
@@ -55,6 +53,11 @@ jobs:
echo "$CHANGED_CHARTS"
echo "$CHANGED_CHARTS" | while read -r chart; do
helm dependency list --max-col-width 120 2> /dev/null \
| tail +2 | head -n -1 \
| awk '{ print "helm repo add " $1 " " $3 }' \
| while read cmd; do echo "$cmd" | sh; done || true
echo ">> Building dependency for "$chart" ..."
helm dependency build "$chart"
echo ">> Linting $chart..."