From ed5d9e003021e8695642fcb781a759daa99fed59 Mon Sep 17 00:00:00 2001 From: JesseBot Date: Mon, 24 Apr 2023 17:16:40 +0200 Subject: [PATCH 1/2] Add `--target-branch` to linting and install helm chart steps Signed-off-by: JesseBot --- .github/workflows/lint-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 1dad2acd..ae210fc8 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -41,7 +41,7 @@ jobs: - name: Run chart-testing (lint) id: lint if: steps.list-changed.outputs.changed == 'true' - run: ct lint --config ct.yaml + run: ct lint --target-branch ${{ github.event.repository.default_branch }} - name: Create kind cluster uses: helm/kind-action@v1.5.0 @@ -52,4 +52,4 @@ jobs: - name: Run chart-testing (install) id: install if: steps.list-changed.outputs.changed == 'true' - run: ct install --config ct.yaml + run: ct install --target-branch ${{ github.event.repository.default_branch }} From 0fb6823aa85b83c9a3c6568ad14d0d992e555cf7 Mon Sep 17 00:00:00 2001 From: JesseBot Date: Mon, 24 Apr 2023 17:25:48 +0200 Subject: [PATCH 2/2] remove install_local_path_provisioner param from kind install variable is no longer supported Signed-off-by: JesseBot --- .github/workflows/lint-test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index ae210fc8..d86032da 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -45,8 +45,6 @@ jobs: - name: Create kind cluster uses: helm/kind-action@v1.5.0 - with: - install_local_path_provisioner: true if: steps.list-changed.outputs.changed == 'true' - name: Run chart-testing (install)