From 95ff428bd19199f91221d6c5f4282920efc88a8d Mon Sep 17 00:00:00 2001
From: Jeff Billimek <jeff@billimek.com>
Date: Mon, 27 May 2019 21:49:08 -0400
Subject: [PATCH] skip linting for pushing charts step

---
 .github/main.workflow | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/main.workflow b/.github/main.workflow
index ecc4a0f5..7486b461 100644
--- a/.github/main.workflow
+++ b/.github/main.workflow
@@ -1,4 +1,4 @@
-workflow "Lint & Publish Helm chart" {
+workflow "Publish Helm chart(s)" {
   resolves = [
     "Package Helm Chart(s)",
     "Filter: not deleted",
@@ -22,6 +22,9 @@ action "Package Helm Chart(s)" {
     "ACCESS_TOKEN",
   ]
   needs = ["Filter: not deleted"]
+  env = {
+    SKIP_LINTING = "true"
+  }
 }
 
 action "Filter: action 'opened|synchronize'" {
@@ -36,9 +39,6 @@ action "Lint changed chart(s) in pull request" {
   args = "https://billimek.com/billimek-charts/"
   secrets = ["GITHUB_TOKEN"]
   needs = ["Filter: action 'opened|synchronize'"]
-  env = {
-    SKIP_LINTING = "true"
-  }
 }
 
 action "Filter: master branch" {