act/actions/testdata/env.workflow

9 lines
190 B
Text
Raw Normal View History

2019-02-07 11:09:19 -06:00
workflow "test" {
on = "push"
resolves = ["test-action"]
}
action "test-action" {
uses = "docker://alpine:3.9"
runs = ["sh", "-c", "echo $GITHUB_REPOSITORY | grep '^nektos/act$'"]
}