From 935deb686326060436dc5bdfbcc9a4c9a7ce4ddb Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Sun, 26 May 2019 17:49:44 -0400 Subject: [PATCH] separate push and PR workflows --- .github/main.workflow | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/main.workflow b/.github/main.workflow index c962b21d..a20e1d09 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,12 @@ workflow "Lint & Publish Helm chart" { resolves = [ "Package Helm Chart(s)", + ] + on = "push" +} + +workflow "Pull Requests" { + resolves = [ "Pull Request Linting", ] on = "push"