-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdagu-action.yaml
More file actions
72 lines (72 loc) · 1.66 KB
/
Copy pathdagu-action.yaml
File metadata and controls
72 lines (72 loc) · 1.66 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
apiVersion: v1alpha1
name: github-cli
dag: workflow.yaml
inputs:
type: object
additionalProperties: false
required: [args]
properties:
args:
type: array
minItems: 1
items:
type: string
minLength: 1
description: GitHub CLI arguments passed to gh without shell parsing.
stdin:
type: string
description: Optional text written to gh stdin.
env:
type: object
additionalProperties:
type: string
description: Extra environment variables for gh, such as GH_TOKEN or GITHUB_TOKEN.
repo:
type: string
minLength: 1
description: Optional GH_REPO value in [HOST/]OWNER/REPO format.
host:
type: string
minLength: 1
description: Optional GH_HOST value for GitHub Enterprise or explicit host selection.
workdir:
type: string
minLength: 1
description: Optional working directory for gh.
timeoutSeconds:
type: integer
minimum: 1
maximum: 1800
default: 300
description: Maximum runtime for the gh command.
outputs:
type: object
additionalProperties: false
required: [ok, exitCode, stdout, stderr, durationMs, ghVersion, timedOut]
properties:
ok:
type: boolean
exitCode:
type: integer
stdout:
type: string
stderr:
type: string
durationMs:
type: integer
minimum: 0
ghVersion:
type: string
timedOut:
type: boolean
error:
type: object
additionalProperties: false
required: [name, message]
properties:
name:
type: string
message:
type: string
stack:
type: string