fix action

This commit is contained in:
ludeeus
2019-03-08 19:24:11 +01:00
parent f686660196
commit ad2e54a710
+21 -3
View File
@@ -1,14 +1,15 @@
workflow "Trigger: Push to master from admin account" { workflow "Trigger: Push to master from admin account" {
on = "push" on = "push"
resolves = [ resolves = [
"HA Index" "HA Index",
"push"
] ]
} }
workflow "Trigger: Push" { workflow "Trigger: Push" {
on = "push" on = "push"
resolves = [ resolves = [
"Black Code Formatter" "Black Code Formatter Check"
] ]
} }
@@ -32,7 +33,24 @@ action "HA Index" {
needs = ["branch-filter", "Access control"] needs = ["branch-filter", "Access control"]
} }
action "Black Code Formatter" { action "Black Code Formatter Fix" {
uses = "lgeiger/[email protected]"
args = "$GITHUB_WORKSPACE"
}
action "Black Code Formatter Check" {
uses = "lgeiger/[email protected]" uses = "lgeiger/[email protected]"
args = "$GITHUB_WORKSPACE --check" args = "$GITHUB_WORKSPACE --check"
}
action "push" {
uses = "ludeeus/actions/push@master"
env = {
PUSHMAIL = "[email protected]"
PUSHNAME = "ludeeus"
PUSHBRANCH = "master"
PUSHMESSAGE = "Action commit"
}
needs = ["Black Code Formatter Fix"]
secrets = ["GITHUB_TOKEN"]
} }