-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (34 loc) · 1.06 KB
/
action.yml
File metadata and controls
34 lines (34 loc) · 1.06 KB
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
28
29
30
31
32
33
34
name: 'Draft'
description: 'No description.'
inputs:
token:
description: 'GitHub token used by action.'
default: ${{ github.token }}
required: true
repository:
description: 'Owner and repository name. For example, "Codertocat/Hello-World".'
default: ${{ github.repository }}
required: true
config:
description: 'Path to file or config as value with generate settings. (Possible representation types: "Json" or "Yaml".)'
default: .github/config.yml
required: true
context:
description: 'Context can be specific value or file path, and can be accessed in text formatting context. (Possible representation types: "Json" or "Yaml".)'
default: '{}'
required: true
input:
description: 'Input can be specific value or file path. (Possible representation types: "Json" or "Yaml".)'
required: true
output:
description: 'Path to output result as file.'
required: false
outputs:
result:
description: 'Action result.'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'box'
color: 'gray-dark'