From fcbf8ec36261788281c2c4fbd34ca1538429b70a Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Mon, 27 May 2019 21:02:41 -0400 Subject: [PATCH] doing push events in parallel --- .github/main.workflow | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 166bd922..1be1cefe 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,7 +1,6 @@ workflow "Lint & Publish Helm chart" { resolves = [ "Package Helm Chart(s)", - "Filter: not deleted", ] on = "push" } @@ -21,7 +20,10 @@ action "Package Helm Chart(s)" { "COMMIT_EMAIL", "ACCESS_TOKEN", ] - needs = ["Filter: not deleted"] + needs = [ + "Filter: not deleted", + "Filter: master branch", + ] } action "Filter: master branch" { @@ -34,7 +36,6 @@ action "Filter: not deleted" { uses = "actions/bin/filter@master" args = "not deleted" secrets = ["GITHUB_TOKEN"] - needs = ["Filter: master branch"] } workflow "on pull request merge, delete the branch" {