-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
52 lines (52 loc) · 1.22 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
44
45
46
47
48
49
50
51
52
name: 'Run GTO '
description:
'Runs GTO show and populates info about triggering event in outputs.'
author: 'Iterative, Inc.'
inputs:
pull:
description:
'Run `dvc pull` on the artifact'
default: "false"
required: false
show:
description:
'Whether to run gto show'
default: "true"
required: false
history:
description:
'Whether to run gto history'
default: "true"
required: false
print-outputs:
description:
'Whether to print all action outputs'
default: "true"
required: false
outputs:
event:
description: "Type of triggering event"
name:
description: "The name of the artifact"
version:
description: "The version of the artifact"
stage:
description: "The stage - if the events is a stage assignment"
type:
description: "The type of the artifact (if annotated)"
path:
description: "The path of the artifact (if annotated)"
description:
description: "The description of the artifact (if annotated)"
runs:
using: docker
image: "Dockerfile"
args:
- $GITHUB_REF
- ${{ inputs.show }}
- ${{ inputs.history }}
- ${{ inputs.print-outputs }}
- ${{ inputs.pull }}
branding:
icon: terminal
color: purple