-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yaml
More file actions
35 lines (31 loc) · 955 Bytes
/
Copy pathaction.yaml
File metadata and controls
35 lines (31 loc) · 955 Bytes
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: DefectDojo Report Upload Actions
description: Here we can upload the DefectDojo report to the DefectDojo server.
author: 'tharun13055'
inputs:
DEFECTDOJO_TOKEN:
description: 'DefectDojo API token'
required: true
DEFECTDOJO_URL:
description: 'URL of the DefectDojo server'
required: true
FILE_PATH_WITH_FILE_NAME:
description: 'Path to the file to be uploaded'
required: true
PRODUCT_NAME:
description: 'Name of the product in DefectDojo'
required: true
SCAN_TYPE:
description: 'Type of scan'
required: true
runs:
using: docker
image: 'docker://tharun13055/defectdojo-action:v1'
env:
DEFECTDOJO_TOKEN: ${{ inputs.DEFECTDOJO_TOKEN }}
DEFECTDOJO_URL: ${{ inputs.DEFECTDOJO_URL }}
FILE_PATH_WITH_FILE_NAME: ${{ inputs.FILE_PATH_WITH_FILE_NAME }}
PRODUCT_NAME: ${{ inputs.PRODUCT_NAME }}
SCAN_TYPE: ${{ inputs.SCAN_TYPE }}
branding:
icon: 'upload-cloud'
color: 'orange'