add additional PR filter

This commit is contained in:
Jeff Billimek 2019-05-26 21:39:41 -04:00 committed by GitHub
parent 935deb6863
commit 64228b418f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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