adding filter for master branch

This commit is contained in:
Jeff Billimek 2019-05-15 22:00:20 -04:00 committed by GitHub
parent d708128847
commit 12a0da30ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
.github/main.workflow vendored
View File

@ -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"]
}