diff options
Diffstat (limited to 'pkg/runner/testdata/workflow_dispatch-scalar-composite-action/workflow_dispatch.yml')
-rw-r--r-- | pkg/runner/testdata/workflow_dispatch-scalar-composite-action/workflow_dispatch.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/runner/testdata/workflow_dispatch-scalar-composite-action/workflow_dispatch.yml b/pkg/runner/testdata/workflow_dispatch-scalar-composite-action/workflow_dispatch.yml new file mode 100644 index 0000000..f8447b4 --- /dev/null +++ b/pkg/runner/testdata/workflow_dispatch-scalar-composite-action/workflow_dispatch.yml @@ -0,0 +1,17 @@ +name: workflow_dispatch + +on: workflow_dispatch + +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: | + runs: + using: composite + steps: + - run: | + exit 0 + shell: bash + shell: cp {0} action.yml + - uses: ./ |