From 08b1ac4316722fc5a110387093ed4e0758b517eb Mon Sep 17 00:00:00 2001 From: ab Date: Sun, 13 Apr 2025 00:33:53 +0000 Subject: [PATCH] Update .gitea/workflows/lint.yaml --- .gitea/workflows/lint.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml index f7371f1..e25badb 100644 --- a/.gitea/workflows/lint.yaml +++ b/.gitea/workflows/lint.yaml @@ -13,10 +13,5 @@ jobs: name: Setup Kubeconform - name: Kubeconform continue-on-error: true - run: kubeconform -summary -verbose -output pretty -ignore-missing-schemas -skip '.*values\.yaml$' k8s/ - - name: 'Yamllint' - uses: karancode/yamllint-github-action@master - continue-on-error: true - with: - yamllint_file_or_dir: 'k8s/' - yamllint_strict: false + #run: kubeconform -summary -verbose -output pretty -ignore-missing-schemas -skip '.*values\.yaml$' k8s/ + run: find . -name '*.yaml' ! -name 'values.yaml' -print0 | xargs -0 kubeconform -summary -verbose -output pretty -ignore-missing-schemas