├── .github ├── dependabot.yml └── workflows │ ├── integration.yml │ └── release.yml ├── LICENSE ├── README.md ├── action.yml └── testdata ├── path ├── hello.yml └── to │ ├── exec.yml │ ├── fail.yml │ ├── httpbin.yml │ ├── httpbin_include.yml │ ├── parent.yml │ └── remote.yml ├── vars.json └── vars_array.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/action.yml -------------------------------------------------------------------------------- /testdata/path/hello.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/hello.yml -------------------------------------------------------------------------------- /testdata/path/to/exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/to/exec.yml -------------------------------------------------------------------------------- /testdata/path/to/fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/to/fail.yml -------------------------------------------------------------------------------- /testdata/path/to/httpbin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/to/httpbin.yml -------------------------------------------------------------------------------- /testdata/path/to/httpbin_include.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/to/httpbin_include.yml -------------------------------------------------------------------------------- /testdata/path/to/parent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/to/parent.yml -------------------------------------------------------------------------------- /testdata/path/to/remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/path/to/remote.yml -------------------------------------------------------------------------------- /testdata/vars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/vars.json -------------------------------------------------------------------------------- /testdata/vars_array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k2tzumi/runn-action/HEAD/testdata/vars_array.json --------------------------------------------------------------------------------