From 2676dbded200b0dd4bcce723b361c45c1e810fae Mon Sep 17 00:00:00 2001 From: "Nicholas St. Germain" Date: Sun, 6 Sep 2020 17:15:41 -0500 Subject: [PATCH] quote checks [skip install] [skip lint] --- .github/workflows/lint-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 7958b65e..2daaf44f 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -13,16 +13,16 @@ jobs: - name: Run chart-testing (lint) id: lint uses: helm/chart-testing-action@v1.0.0 - if: ! contains(env.commitmsg, '[skip lint]') + if: "! contains(env.commitmsg, '[skip lint]')" with: command: lint config: ct.yaml - name: Create kind cluster uses: helm/kind-action@v1.0.0 - if: steps.lint.outputs.changed == 'true' && ! contains(env.commitmsg, '[skip install]') + if: "steps.lint.outputs.changed == 'true' && ! contains(env.commitmsg, '[skip install]')" - name: Run chart-testing (install) uses: helm/chart-testing-action@v1.0.0 - if: steps.lint.outputs.changed == 'true' && ! contains(env.commitmsg, '[skip install]') + if: "steps.lint.outputs.changed == 'true' && ! contains(env.commitmsg, '[skip install]')" with: command: install config: ct.yaml