doing push events in parallel

This commit is contained in:
Jeff Billimek 2019-05-27 21:02:41 -04:00 committed by GitHub
parent 91737bd9fd
commit fcbf8ec362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,6 @@
workflow "Lint & Publish Helm chart" { workflow "Lint & Publish Helm chart" {
resolves = [ resolves = [
"Package Helm Chart(s)", "Package Helm Chart(s)",
"Filter: not deleted",
] ]
on = "push" on = "push"
} }
@ -21,7 +20,10 @@ action "Package Helm Chart(s)" {
"COMMIT_EMAIL", "COMMIT_EMAIL",
"ACCESS_TOKEN", "ACCESS_TOKEN",
] ]
needs = ["Filter: not deleted"] needs = [
"Filter: not deleted",
"Filter: master branch",
]
} }
action "Filter: master branch" { action "Filter: master branch" {
@ -34,7 +36,6 @@ action "Filter: not deleted" {
uses = "actions/bin/filter@master" uses = "actions/bin/filter@master"
args = "not deleted" args = "not deleted"
secrets = ["GITHUB_TOKEN"] secrets = ["GITHUB_TOKEN"]
needs = ["Filter: master branch"]
} }
workflow "on pull request merge, delete the branch" { workflow "on pull request merge, delete the branch" {