generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
28 lines (28 loc) · 1.13 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
name: 'Coverity json-output-v7 Report'
branding:
icon: 'shield'
color: 'purple'
description: 'DEPRECATED: Please use Black Duck Security Scan "https://github.com/marketplace/actions/black-duck-security-scan" '
author: 'Synopsys Inc'
inputs:
github-token:
description: 'Your GitHub token'
required: true
json-file-path:
description: 'The fully qualified path to your v7 Coverity JSON file, generated by the cov-format-errors command'
required: true
coverity-url:
description: 'The URL of the Coverity Connect server to be referenced for REST API calls'
required: false
coverity-project-name:
description: 'The name of this project within the Coverity Connect instance. This field is required to properly query issues from the server'
required: false
coverity-username:
description: 'The username of the Coverity user whose account will access the Coverity Connect server. The user must have the "Access Web services" permission.'
required: false
coverity-password:
description: 'The password associated with the Coverity username'
required: false
runs:
using: 'node12'
main: 'dist/index.js'