mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
fixing wording
This commit is contained in:
parent
857a207e99
commit
7105c766fb
14
.github/main.workflow
vendored
14
.github/main.workflow
vendored
@ -1,7 +1,7 @@
|
|||||||
workflow "Lint & Publish Helm chart" {
|
workflow "Lint & Publish Helm chart" {
|
||||||
resolves = [
|
resolves = [
|
||||||
"Not a deleted event",
|
|
||||||
"Package Helm Chart(s)",
|
"Package Helm Chart(s)",
|
||||||
|
"Filter: not deleted",
|
||||||
]
|
]
|
||||||
on = "push"
|
on = "push"
|
||||||
}
|
}
|
||||||
@ -21,30 +21,30 @@ action "Package Helm Chart(s)" {
|
|||||||
"COMMIT_EMAIL",
|
"COMMIT_EMAIL",
|
||||||
"ACCESS_TOKEN",
|
"ACCESS_TOKEN",
|
||||||
]
|
]
|
||||||
needs = ["Not a deleted event"]
|
needs = ["Filter: not deleted"]
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Lint changed chart(s) in pull request" {
|
action "Lint changed chart(s) in pull request" {
|
||||||
uses = "billimek/gh-actions/helm-gh-pages@master"
|
uses = "billimek/gh-actions/helm-gh-pages@master"
|
||||||
args = "https://billimek.com/billimek-charts/"
|
args = "https://billimek.com/billimek-charts/"
|
||||||
secrets = ["GITHUB_TOKEN"]
|
secrets = ["GITHUB_TOKEN"]
|
||||||
needs = ["Not on master branch ?"]
|
needs = ["Filter: not master branch"]
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Push on the master branch?" {
|
action "Filter: master branch" {
|
||||||
uses = "actions/bin/filter@master"
|
uses = "actions/bin/filter@master"
|
||||||
args = "branch master"
|
args = "branch master"
|
||||||
secrets = ["GITHUB_TOKEN"]
|
secrets = ["GITHUB_TOKEN"]
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Not a deleted event" {
|
action "Filter: not deleted" {
|
||||||
uses = "actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da"
|
uses = "actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da"
|
||||||
args = "not deleted"
|
args = "not deleted"
|
||||||
secrets = ["GITHUB_TOKEN"]
|
secrets = ["GITHUB_TOKEN"]
|
||||||
needs = ["Push on the master branch?"]
|
needs = ["Filter: master branch"]
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Not on master branch ?" {
|
action "Filter: not master branch" {
|
||||||
uses = "actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da"
|
uses = "actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da"
|
||||||
args = "not branch master"
|
args = "not branch master"
|
||||||
secrets = ["GITHUB_TOKEN"]
|
secrets = ["GITHUB_TOKEN"]
|
||||||
|
Loading…
Reference in New Issue
Block a user