act/actions/testdata/fail.workflow
2019-02-06 22:36:13 -08:00

13 lines
No EOL
210 B
HCL

workflow "test" {
on = "push"
resolves = ["test-action"]
}
action "test-action" {
uses = "docker://alpine:3.9"
runs = ["sh", "-c", "echo $IN | grep $OUT"]
env = {
IN = "foo"
OUT = "bar"
}
}