Skip to content

Commit f5cb06d

Browse files
committed
commited
1 parent c8d0074 commit f5cb06d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.action.yml.kate-swp

-739 Bytes
Binary file not shown.

action.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# action.yml
2+
name: 'Hello World'
3+
description: 'Greet someone and record the time'
4+
inputs:
5+
who-to-greet: # id of input
6+
description: 'Who to greet'
7+
required: true
8+
default: 'World'
9+
outputs:
10+
time: # id of output
11+
description: 'The time we greeted you'
12+
runs:
13+
using: 'docker'
14+
image: 'Dockerfile'
15+
args:
16+
- ${{ inputs.who-to-greet }}

0 commit comments

Comments
 (0)