forked from jsresearch/action-wip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (35 loc) · 904 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
35
# action.yml
name: 'Federacy Salus Security Scan'
description: 'SAST and Dependency Scanning'
author: 'James Sulinski'
branding:
icon: 'heart'
color: 'gray-dark'
inputs:
active_scanners:
description: "Active scanners"
required: false
default: "all"
enforced_scanners:
description: "Enforced scanners"
required: false
default: "all"
report_uri:
description: "Where to send Salus reports"
required: false
default: "file://../salus-report.json"
report_format:
description: "Format of the report (json, yaml, txt)"
required: false
default: "json"
report_verbosity:
description: "Whether or not the report should be verbose"
required: false
default: true
configuration_file:
description: "Location of the configuration file, if not default"
required: false
default: ""
runs:
using: 'docker'
image: 'Dockerfile'