generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
34 lines (34 loc) · 914 Bytes
/
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
name: 'Scan GPR Docker'
description: 'Scan Docker images uploaded to GPR'
author: 'Yoni & Yossi'
inputs:
gpr-token:
description: 'GitHub access token with read/write privileges to GPR'
required: true
ws-destination-url:
description: 'WS environment destination url'
required: true
ws-api-key:
description: 'WS organization api key'
required: true
ws-user-key:
description: 'WS user key'
required: true
ws-project-key:
description: 'WS project key to publish results to'
required: true
print-scan-report:
description: 'Whether to print the results report'
required: false
default: false
outputs:
scan-report-file-path:
description: 'Path of the scan report file'
scan-report-folder-path:
description: 'Path of the folder of the scan report file'
runs:
using: 'node12'
main: 'src/main.js'
branding:
icon: 'award'
color: 'green'