-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
43 lines (43 loc) · 1.05 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
40
41
42
43
name: 'SourcePawnManager'
description: 'restore includes defined in spm.json'
branding:
icon: aperture
color: blue
inputs:
action:
description:
'The action to execute. Examples, "restore" or "update".'
required: false
default: 'restore'
verbosity:
description:
'The verbosity level used when logging. Examples, "0" through "4".'
required: false
default: '0'
working-directory:
description:
'The directory containing the spm.json. Examples, "." or "./src".'
required: false
default: '.'
github-token:
description:
'GitHub token used to authenticate API calls.'
required: false
outputs:
exit-code:
description:
'The exit code of the action.'
message:
description:
'A message detailing the executed actions.'
dependency-count:
description:
'The count of restored/updated dependencies.'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.action }}
- ${{ inputs.verbosity }}
- ${{ inputs.working-directory }}
- ${{ inputs.github-token }}