Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Mar 9, 2019
1 parent 72f0635 commit 239ab12
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
workflow "Trigger: Push to master from admin account" {
on = "push"
resolves = [
"HA Index"
]
resolves = ["HA Index"]
}

workflow "Trigger: Push" {
on = "push"
resolves = ["Black Code Formatter"]
}

action "branch-filter" {
Expand All @@ -22,4 +25,9 @@ action "HA Index" {
uses = "ludeeus/action-haindex@master"
secrets = ["GITHUB_TOKEN"]
needs = ["branch-filter", "Access control"]
}

action "Black Code Formatter" {
uses = "lgeiger/black-action@master"
args = "$GITHUB_WORKSPACE --check --diff"
}

0 comments on commit 239ab12

Please sign in to comment.