-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yaml
More file actions
38 lines (37 loc) · 1.02 KB
/
action.yaml
File metadata and controls
38 lines (37 loc) · 1.02 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
action:
title: Scaffold
description: "Provides command to interactively generate the skeleton of new actions"
options:
- name: output
title: Output dir
description: Directory to place action to.
type: string
default: "."
- name: runtime
title: Runtime
description: Action runtime environment
type: string
enum: ["container", "plugin", "shell"]
default: "container"
- name: preset
title: Container preset
description: Defines list of default files for container action
type: string
enum: ["go", "py", "sh"]
default: "sh"
- name: id
title: ID
description: New action ID
type: string
default: "myaction"
- name: title
title: Title
description: New action title
type: string
default: "My Action"
- name: interactive
title: Interactive
description: Interactive mode allows to customize action definition via forms
type: boolean
default: false
runtime: plugin