From a22aa1042c34a92b535177364d3f864eaad1da97 Mon Sep 17 00:00:00 2001 From: ru-sh Date: Tue, 22 Sep 2026 03:05:23 +0400 Subject: [PATCH] Drop the Helm chart lint job --- .github/workflows/build.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2394d4bb7f86..3ebbe8774ccf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,6 @@ jobs: npm: ${{ steps.filter.outputs.npm }} vscode: ${{ steps.filter.outputs.vscode }} docs: ${{ steps.filter.outputs.docs }} - helm: ${{ steps.filter.outputs.helm }} steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6 - uses: dorny/paths-filter@ceb8a2b8f2d89434be7ff52d3de7ec3738c5cc9d # v4.0.3 @@ -38,8 +37,6 @@ jobs: - "docs/**" - "README.md" - "CHANGELOG.md" - helm: - - "ci/helm-chart/**" code: - "src/**" - "test/**" @@ -85,18 +82,6 @@ jobs: - run: SKIP_SUBMODULE_DEPS=1 npm ci - run: npm run doctoc - lint-helm: - name: Lint Helm chart - runs-on: ubuntu-22.04 - needs: changes - if: needs.changes.outputs.helm == 'true' - steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v6 - - uses: bmuschko/setup-kubeconform@e5d264ec1eafe2314e750c429a9da7639dd5a003 # v1.1.0 - with: - kubeconform-version: "0.8.0" - - run: kubeconform ci/helm-chart - lint-ts: name: Lint TypeScript files runs-on: ubuntu-22.04