Skip to content

Commit 4a3cfc2

Browse files
authored
Force variable to empty (#721)
if the var STD_CR_TEMPLATE is not explicitly defined to "" the test on line 218 fails and the callback is not called
1 parent 1e5d988 commit 4a3cfc2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

incubating/service-now/step.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ kind: step-type
22
version: '1.0'
33
metadata:
44
name: service-now
5-
version: 1.4.0
5+
version: 1.4.1
66
isPublic: true
77
description: Integration with ServiceNow Change Management
88
sources:
@@ -86,7 +86,7 @@ spec:
8686
},
8787
"SN_IMAGE_VERSION": {
8888
"type": "string",
89-
"default": "1.4.0",
89+
"default": "1.4.1",
9090
"description": "Version of the ServiceNow image to use, Docker image tag."
9191
},
9292
"SN_INSTANCE": {
@@ -116,7 +116,8 @@ spec:
116116
},
117117
"STD_CR_TEMPLATE": {
118118
"type": "string",
119-
"description": "name of a Standard Change template. Using this parameter will open a Standard Change (pre-approved) instead of a normal one."
119+
"description": "name of a Standard Change template. Using this parameter will open a Standard Change (pre-approved) instead of a normal one.",
120+
"default": ""
120121
},
121122
"CR_CONFLICT_POLICY": {
122123
"type": "string",

0 commit comments

Comments
 (0)