add tests for various actions

This commit is contained in:
Casey Lee
2019-02-06 22:36:13 -08:00
parent 5d0a8d26ae
commit ecae898a7b
34 changed files with 4197 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
workflow "New workflow" {
on = "push"
resolves = ["filter-version-before-deploy"]
}
action "filter-version-before-deploy" {
uses = "actions/bin/filter@master"
args = "tag z?[0-9]+\\.[0-9]+\\.[0-9]+"
}