From 849fcbc7035cf0e2d0ef19f4c1f7f2249a2d782a Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Mon, 27 May 2019 20:40:05 -0400 Subject: [PATCH] updating labels --- .github/main.workflow | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 65b5cd08..b883fedd 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -8,7 +8,6 @@ workflow "Lint & Publish Helm chart" { workflow "Pull Requests" { resolves = [ - "actions/bin/filter@master-1", "Lint changed chart(s) in pull request", ] on = "pull_request" @@ -54,7 +53,7 @@ action "Filter: not master branch" { secrets = ["GITHUB_TOKEN"] } -action "actions/bin/filter@master-1" { +action "Filter: action 'opened|synchronize'" { uses = "actions/bin/filter@master" args = "action 'opened|synchronize'" secrets = ["GITHUB_TOKEN"] @@ -62,7 +61,10 @@ action "actions/bin/filter@master-1" { action "Lint changed chart(s) in pull request" { uses = "billimek/gh-actions/helm-gh-pages@master" - needs = ["actions/bin/filter@master-1", "Filter: not master branch"] + needs = [ + "Filter: not master branch", + "Filter: action 'opened|synchronize'", + ] args = "https://billimek.com/billimek-charts/" secrets = ["GITHUB_TOKEN"] }