-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
action.yml
27 lines (27 loc) · 781 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Make sure to change the action name here (must be unique).
# Update the rest as needed.
name: 'unique-action-goes-here'
description: 'BRIEF DESCRIPTION OF YOUR ACTION'
branding: # Look at documentation for branding options/requirements. These are my favorites.
icon: 'book-open'
color: 'green'
inputs:
input-one:
description: 'Description of input-one'
required: false
default: 'default value goes here'
input-two:
description: 'Description of input-two'
required: false
default: 'default value goes here'
outputs:
output-one:
description: 'Description of output-one'
output-two:
description: 'Description of output-two'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.input-one }}
- ${{ inputs.input-two }}