-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
47 lines (46 loc) · 1.39 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
name: 'Synopsys Polaris Security Testing'
description: 'Run Coverity SAST via the Polaris platform and provide feedback within GitHub pull requests'
author: 'Synopsys Inc'
inputs:
github-token:
description: 'Your GitHub token'
required: true
polaris-url:
description: 'The URL of the Polaris server to be referenced API calls'
required: true
polaris-access-token:
description: 'An access token to support API calls'
required: true
polaris-command:
description: 'Command line to pass to the Polaris CLI, will default to "analyze -w"'
required: false
default: "analyze -w"
debug:
description: 'Enable verbose debugging mode'
required: false
default: "false"
diagnostic:
description: 'Enable diagonstic build artifacts'
required: false
default: "false"
polaris-proxy-url:
description: 'The URL of Proxy server'
required: true
polaris-proxy-username:
description: 'The username for the proxy'
required: true
polaris-proxy-password:
description: 'The password for the proxy'
required: true
generate-sarif:
description: 'Generate SARIF output'
required: false
security-gate-filters:
description: 'Enable security gate'
required: false
skip-run:
description: 'Skip execution of the Polaris CLI command, assume it has been run manually'
required: false
runs:
using: 'node12'
main: 'lib/main.js'