2019-08-05 00:33:03 +00:00
|
|
|
# workflow "Publish Helm chart(s)" {
|
|
|
|
# resolves = [
|
|
|
|
# "Package Helm Chart(s)",
|
|
|
|
# "Filter: not deleted",
|
|
|
|
# ]
|
|
|
|
# on = "push"
|
|
|
|
# }
|
2019-05-26 21:49:44 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# workflow "Pull Requests" {
|
|
|
|
# on = "pull_request"
|
|
|
|
# resolves = [
|
|
|
|
# "Lint changed chart(s) in pull request",
|
|
|
|
# ]
|
|
|
|
# }
|
2019-05-15 14:56:56 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "Package Helm Chart(s)" {
|
|
|
|
# uses = "billimek/gh-actions/helm-gh-pages@master"
|
|
|
|
# args = "https://billimek.com/billimek-charts/"
|
|
|
|
# secrets = [
|
|
|
|
# "GITHUB_TOKEN",
|
|
|
|
# "COMMIT_EMAIL",
|
|
|
|
# "ACCESS_TOKEN",
|
|
|
|
# ]
|
|
|
|
# needs = ["Filter: not deleted"]
|
|
|
|
# env = {
|
|
|
|
# SKIP_LINTING = "true"
|
|
|
|
# }
|
|
|
|
# }
|
2019-05-16 00:07:40 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "Filter: action 'opened|synchronize'" {
|
|
|
|
# uses = "actions/bin/filter@master"
|
|
|
|
# args = "action 'opened|synchronize'"
|
|
|
|
# secrets = ["GITHUB_TOKEN"]
|
|
|
|
# needs = ["Filter: not master branch"]
|
|
|
|
# }
|
2019-05-26 20:33:17 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "Lint changed chart(s) in pull request" {
|
|
|
|
# uses = "billimek/gh-actions/helm-gh-pages@master"
|
|
|
|
# args = "https://billimek.com/billimek-charts/"
|
|
|
|
# secrets = ["GITHUB_TOKEN"]
|
|
|
|
# needs = ["Filter: action 'opened|synchronize'"]
|
|
|
|
# }
|
2019-05-27 02:47:14 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "Filter: master branch" {
|
|
|
|
# uses = "actions/bin/filter@master"
|
|
|
|
# args = "branch master"
|
|
|
|
# secrets = ["GITHUB_TOKEN"]
|
|
|
|
# }
|
2019-05-27 03:03:06 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "Filter: not deleted" {
|
|
|
|
# uses = "actions/bin/filter@master"
|
|
|
|
# args = "not deleted"
|
|
|
|
# secrets = ["GITHUB_TOKEN"]
|
|
|
|
# needs = ["Filter: master branch"]
|
|
|
|
# }
|
2019-05-28 00:39:05 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "Filter: not master branch" {
|
|
|
|
# uses = "actions/bin/filter@master"
|
|
|
|
# args = "not branch master"
|
|
|
|
# secrets = ["GITHUB_TOKEN"]
|
|
|
|
# }
|
2019-05-28 00:39:05 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# workflow "on pull request merge, delete the branch" {
|
|
|
|
# resolves = ["branch cleanup"]
|
|
|
|
# on = "pull_request"
|
|
|
|
# }
|
2019-05-28 00:39:05 +00:00
|
|
|
|
2019-08-05 00:33:03 +00:00
|
|
|
# action "branch cleanup" {
|
|
|
|
# uses = "jessfraz/branch-cleanup-action@master"
|
|
|
|
# secrets = ["GITHUB_TOKEN"]
|
|
|
|
# }
|