mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39:03 +00:00
doing push events in parallel
This commit is contained in:
parent
91737bd9fd
commit
fcbf8ec362
7
.github/main.workflow
vendored
7
.github/main.workflow
vendored
@ -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" {
|
||||||
|
Loading…
Reference in New Issue
Block a user