1
0
mirror of https://gitea.com/gitea/act synced 2026-05-01 01:27:48 +02:00
Files
act/actions/testdata/env.workflow
2019-02-07 09:09:19 -08:00

9 lines
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$'"]
}