-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 1.07 KB
/
action.yml
File metadata and controls
31 lines (31 loc) · 1.07 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
name: 'ServiceNow CI/CD Instance Scan'
description: 'Instance Scan feature that has 5 types of scans to choose from.'
author: "ServiceNow"
inputs:
scantype:
description: "Type of scan process. Can be equal to full, point, suite_combo, suite_scoped, suite_update."
required: true
targetTable:
description: "URL param if point scan type is specified."
required: false
targetSysId:
description: "URL param if point scan type is specified."
required: false
comboSysId:
description: "URL param if suite_combo scan type is specified."
required: false
suiteSysId:
description: "URL param if suite_scoped or suite_update scan type is specified."
required: false
appScopeSysIds:
description: "Payload params, comma separated(if suite_scoped or suite_update scan type is specified)."
required: false
updateSetSysIds:
description: "Payload params, comma separated(if suite_scoped or suite_update scan type is specified)."
required: false
runs:
using: 'node12'
main: './lib/index.js'
branding:
icon: 'refresh-ccw'
color: 'green'