diff --git a/.github/main.workflow b/.github/main.workflow index a20e1d09..05ee1396 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -23,7 +23,7 @@ action "Pull Request Linting" { uses = "billimek/gh-actions/helm-gh-pages@master" args = "https://billimek.com/billimek-charts/" secrets = ["GITHUB_TOKEN"] - needs = ["Filter for not master"] + needs = ["Is this a PR"] } action "Filter for master" { @@ -37,3 +37,10 @@ action "Filter for not master" { args = "not branch master" secrets = ["GITHUB_TOKEN"] } + +action "Is this a PR" { + uses = "actions/bin/filter@master" + needs = ["Filter for not master"] + args = "action 'opened|synchronize|reopened'" + secrets = ["GITHUB_TOKEN"] +}