skip linting for pushing charts step

This commit is contained in:
Jeff Billimek 2019-05-27 21:49:08 -04:00 committed by GitHub
parent 170c03595b
commit 95ff428bd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
workflow "Lint & Publish Helm chart" {
workflow "Publish Helm chart(s)" {
resolves = [
"Package Helm Chart(s)",
"Filter: not deleted",
@ -22,6 +22,9 @@ action "Package Helm Chart(s)" {
"ACCESS_TOKEN",
]
needs = ["Filter: not deleted"]
env = {
SKIP_LINTING = "true"
}
}
action "Filter: action 'opened|synchronize'" {
@ -36,9 +39,6 @@ action "Lint changed chart(s) in pull request" {
args = "https://billimek.com/billimek-charts/"
secrets = ["GITHUB_TOKEN"]
needs = ["Filter: action 'opened|synchronize'"]
env = {
SKIP_LINTING = "true"
}
}
action "Filter: master branch" {