-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (31 loc) · 857 Bytes
/
action.yml
File metadata and controls
34 lines (31 loc) · 857 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
# action.yml
name: 'Probely DAST for Security Scans'
description: 'Scan your application for vulnerabilities using Probely DAST'
inputs:
api-key:
description: Probely's API Key
required: true
target-id:
description: Probely's identifier of the target to scan
required: true
region:
description: Probely's region where your account is hosted
default: "eu"
scan-profile:
description: The scan profile to use in the scan. If not defined, the scan profile will be the one defined in the target settings.
default: ""
runs:
using: 'docker'
image: 'Dockerfile'
args:
- "--api-key"
- ${{ inputs.api-key }}
- "--target-id"
- ${{ inputs.target-id }}
- "--region"
- ${{ inputs.region }}
- "--scan-profile"
- ${{ inputs.scan-profile }}
branding:
icon: 'chevron-right'
color: 'blue'