-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
62 lines (62 loc) · 1.63 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
59
60
61
62
name: 'Deploy a Devops-Deploy application'
description: 'Run Devops-Deploy Application Process Request'
branding:
icon: 'copy'
color: 'blue'
inputs:
application:
description: 'Application Name'
required: true
applicationProcess:
description: 'Application Process Name'
required: true
environment:
description: 'Environment Name'
required: true
onlyChanged:
description: 'onlyChanged'
required: false
type: boolean
default: false
properties:
description : 'Properties for Application process properties as a JSON String'
required: false
type: String
propertiesfile:
description : 'Properties file path in the repository for Application process properties'
required: false
type: String
snapshot:
description: 'Name/ID of the snapshot. Mutually exclusive with versions parameter'
reqiuired: false
type: String
versions:
description: 'Version along with component as a JSON string eg:- {\"version\":\"version1\" , \n \"component\":\"component1\"} '
required: false
type: String
hostname:
description: 'UCD hostname'
required: true
port:
description: 'port'
required: true
default: '8443'
username:
description: 'username'
required: true
password:
description: 'password'
required: false
secret: true
authToken:
description: 'UCD auth token'
required: false
secret: true
disableSSLVerification:
description: 'skip SSL certificate validation when making HTTPS requests and this is discouraged'
required: true
type: boolean
default: false
runs:
using: 'node20'
main: 'dist/index.js'