forked from codedx/codedx-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (34 loc) · 1.35 KB
/
action.yml
File metadata and controls
35 lines (34 loc) · 1.35 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
32
33
34
35
name: 'Code Dx Analysis'
description: 'Analyze your source code and binaries with Code Dx'
inputs:
# main config options
server-url:
description: 'the URL for the Code Dx server (typically ends with `/codedx`)'
required: true
api-key:
description: 'an API key or Personal Access Token (PAT) to use when connecting to Code Dx'
required: true
project-id:
description: 'the ID of a project (an integer) created in Code Dx'
required: true
source-and-binaries-glob:
description: 'a file glob matching source and binary files (accepts multiple comma-separated globs)'
required: true
tool-outputs-glob:
description: 'a file glob matching output files (ie scan results) from an analysis tool (accepts multiple comma-separated globs)'
required: false
# additional settings
wait-for-completion:
description: 'whether to wait for the analysis to complete. if true, will fail the build if the analysis encountered an error.'
required: false
default: false
ca-cert:
description: 'a custom CA cert to use for HTTPS requests to Code Dx'
required: false
dry-run:
description: 'whether to submit an analysis (false/undefined), or only test the connection and credentials (true). an error in validation will fail the build.'
required: false
default: false
runs:
using: 'node12'
main: 'dist/index.js'