summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/actions/docker-local/action.yml
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/runner/testdata/actions/docker-local/action.yml')
-rw-r--r--pkg/runner/testdata/actions/docker-local/action.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/runner/testdata/actions/docker-local/action.yml b/pkg/runner/testdata/actions/docker-local/action.yml
new file mode 100644
index 0000000..5d3ce62
--- /dev/null
+++ b/pkg/runner/testdata/actions/docker-local/action.yml
@@ -0,0 +1,17 @@
+name: 'Hello World'
+description: 'Greet someone and record the time'
+inputs:
+ who-to-greet: # id of input
+ description: 'Who to greet'
+ required: true
+ default: 'World'
+outputs:
+ time: # id of output
+ description: 'The time we greeted you'
+runs:
+ using: 'docker'
+ image: 'Dockerfile'
+ env:
+ WHOAMI: ${{ inputs.who-to-greet }}
+ args:
+ - ${{ inputs.who-to-greet }}