Support action.yaml file (#288)

* Support action.yaml file

* L0 tests.

* l0

Co-authored-by: Tingluo Huang <tingluohuang@github.com>
This commit is contained in:
Alberto Gimeno
2020-01-20 18:22:59 +01:00
committed by Tingluo Huang
parent 7a382facb3
commit c59c0e2ded
3 changed files with 160 additions and 23 deletions

View File

@@ -162,7 +162,8 @@ namespace GitHub.Runner.Common
public static class Path
{
public static readonly string ActionsDirectory = "_actions";
public static readonly string ActionManifestFile = "action.yml";
public static readonly string ActionManifestYmlFile = "action.yml";
public static readonly string ActionManifestYamlFile = "action.yaml";
public static readonly string BinDirectory = "bin";
public static readonly string DiagDirectory = "_diag";
public static readonly string ExternalsDirectory = "externals";