9 lines
No EOL
190 B
HCL
9 lines
No EOL
190 B
HCL
workflow "test" {
|
|
on = "push"
|
|
resolves = ["test-action"]
|
|
}
|
|
|
|
action "test-action" {
|
|
uses = "docker://alpine:3.9"
|
|
runs = ["sh", "-c", "echo $GITHUB_REPOSITORY | grep '^nektos/act$'"]
|
|
} |