From 8a955e206f7450e0035808ffa3fbb30760cd9604 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 15 Dec 2025 14:33:19 -0600 Subject: [PATCH] fix match --- .gitea/workflows/lint-test-helm.yaml | 3 +-- .gitea/workflows/render-manifests-automerge.yaml | 2 +- .gitea/workflows/render-manifests-dispatch.yaml | 2 +- .gitea/workflows/render-manifests-merge.yaml | 2 +- .gitea/workflows/render-manifests-push.yaml | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/lint-test-helm.yaml b/.gitea/workflows/lint-test-helm.yaml index 4875df147..7ae215fac 100644 --- a/.gitea/workflows/lint-test-helm.yaml +++ b/.gitea/workflows/lint-test-helm.yaml @@ -125,8 +125,7 @@ jobs: | tail +2 | head -n -1 \ | awk '{ print "helm repo add " $1 " " $3 }' \ | while read cmd; do - echo ">> Command: $cmd" - if [[ "$cmd" == "helm repo add oci:*" ]]; then + if [[ "$cmd" == "*oci://*" ]]; then echo ">> Ignoring OCI repo" else echo "$cmd" | sh; diff --git a/.gitea/workflows/render-manifests-automerge.yaml b/.gitea/workflows/render-manifests-automerge.yaml index a753c8ffb..07a7a1c75 100644 --- a/.gitea/workflows/render-manifests-automerge.yaml +++ b/.gitea/workflows/render-manifests-automerge.yaml @@ -107,7 +107,7 @@ jobs: | tail +2 | head -n -1 \ | awk '{ print "helm repo add " $1 " " $3 }' \ | while read cmd; do - if [[ "$cmd" == "helm repo add oci:*" ]]; then + if [[ "$cmd" == "*oci://*" ]]; then echo ">> Ignoring OCI repo" else echo "$cmd" | sh; diff --git a/.gitea/workflows/render-manifests-dispatch.yaml b/.gitea/workflows/render-manifests-dispatch.yaml index eabb20200..efed359f7 100644 --- a/.gitea/workflows/render-manifests-dispatch.yaml +++ b/.gitea/workflows/render-manifests-dispatch.yaml @@ -92,7 +92,7 @@ jobs: | tail +2 | head -n -1 \ | awk '{ print "helm repo add " $1 " " $3 }' \ | while read cmd; do - if [[ "$cmd" == "helm repo add oci:*" ]]; then + if [[ "$cmd" == "*oci://*" ]]; then echo ">> Ignoring OCI repo" else echo "$cmd" | sh; diff --git a/.gitea/workflows/render-manifests-merge.yaml b/.gitea/workflows/render-manifests-merge.yaml index a19904e74..2a2a6a710 100644 --- a/.gitea/workflows/render-manifests-merge.yaml +++ b/.gitea/workflows/render-manifests-merge.yaml @@ -112,7 +112,7 @@ jobs: | tail +2 | head -n -1 \ | awk '{ print "helm repo add " $1 " " $3 }' \ | while read cmd; do - if [[ "$cmd" == "helm repo add oci:*" ]]; then + if [[ "$cmd" == "*oci://*" ]]; then echo ">> Ignoring OCI repo" else echo "$cmd" | sh; diff --git a/.gitea/workflows/render-manifests-push.yaml b/.gitea/workflows/render-manifests-push.yaml index 18ee6daa6..95f372681 100644 --- a/.gitea/workflows/render-manifests-push.yaml +++ b/.gitea/workflows/render-manifests-push.yaml @@ -110,7 +110,7 @@ jobs: | tail +2 | head -n -1 \ | awk '{ print "helm repo add " $1 " " $3 }' \ | while read cmd; do - if [[ "$cmd" == "helm repo add oci:*" ]]; then + if [[ "$cmd" == "*oci://*" ]]; then echo ">> Ignoring OCI repo" else echo "$cmd" | sh;