generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 13
/
action.yml
58 lines (58 loc) · 1.7 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
53
54
55
56
57
58
name: 'Deploy Environment'
description: 'Deploy a Parasoft Service Virtualization environment'
author: 'Parasoft'
branding:
icon: 'aperture'
color: 'blue'
inputs:
ctpUrl:
required: true
description: 'CTP URL'
ctpUsername:
required: true
description: 'CTP Username'
ctpPassword:
required: true
description: 'CTP Password'
system:
required: true
description: 'Name of the system'
environment:
required: true
description: 'Name of the environment'
instance:
required: true
description: 'Name of the environment instance to provision'
abortOnFailure:
required: false
description: 'Fail action and abort on provisioning failure'
copyToVirtualize:
required: false
description: 'Virtual assets in the environment will be replicated on another server'
virtServerName:
required: false
description: 'The environment assets will be copied to a Virtualize server matching this name'
newEnvironmentName:
required: false
description: 'The name for the replicated environment can be used to later destroy the environment'
duplicateDataRepo:
required: false
description: 'Duplicate associated data repositories before provisioning'
duplicateType:
required: false
description: 'Where to duplicate data repository'
repoHost:
required: false
description: 'The host of the data repository server'
repoPort:
required: false
description: 'The port of the data repository server'
repoUsername:
required: false
description: 'The username of the data repository server'
repoPassword:
required: false
description: 'The password of the data repository server'
runs:
using: 'node12'
main: 'dist/index.js'