Remove GitHub workflow

- GitHub is refusing to allow an integration to create .github/main.workflow and Flux is unable to push the sync git tag to the repo
master
stefanprodan 2019-01-28 12:41:53 +02:00
parent acdc051fdf
commit e42da7422e
1 changed files with 0 additions and 21 deletions

21
.github/main.workflow vendored
View File

@ -1,21 +0,0 @@
workflow "Validate manifests" {
on = "push"
resolves = ["helm-lint"]
}
action "yaml-lint" {
uses = "stefanprodan/gh-actions/yamllint@master"
args = ["-d '{extends: relaxed, rules: {line-length: {max: 120}}}' -f parsable ./releases/*"]
}
action "kube-lint" {
needs = ["yaml-lint"]
uses = "stefanprodan/gh-actions/kubeval@master"
args = "workloads/*"
}
action "helm-lint" {
needs = ["kube-lint"]
uses = "stefanprodan/gh-actions/helm@master"
args = ["lint charts/*"]
}