generated from unity-game-framework-actions/draft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
39 lines (39 loc) · 1.27 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
name: 'Releases Changelog'
description: 'Creates changelog based on all releases.'
inputs:
branch:
description: 'Branch used to get list of releases, possible values "all" or "name of branch".'
default: all
required: true
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/releases-changelog.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".)'
default: '{}'
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'