quote checks [skip install] [skip lint]

This commit is contained in:
Nicholas St. Germain 2020-09-06 17:15:41 -05:00
parent 7e92803f87
commit 2676dbded2
No known key found for this signature in database
GPG Key ID: 7221152119DAB1E6

View File

@ -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