diff --git a/.github/main.workflow b/.github/main.workflow index 83dfa665..37f8095a 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -9,11 +9,14 @@ action "Package Helm Chart(s)" { uses = "billimek/gh-actions/helm-gh-pages@master" args = "[\"https://billimek.com/billimek-charts/\"]" secrets = ["GITHUB_TOKEN"] + needs = ["Filter for master "] } workflow "Pull Request" { on = "pull_request" - resolves = ["Pull Request Linting"] + resolves = [ + "Pull Request Linting", + ] } action "Pull Request Linting" { @@ -21,3 +24,9 @@ action "Pull Request Linting" { args = "\"https://billimek.com/billimek-charts/\"" secrets = ["GITHUB_TOKEN"] } + +action "Filter for master " { + uses = "actions/bin/filter@master" + args = "branch master" + secrets = ["GITHUB_TOKEN"] +}