-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
32 lines (31 loc) · 1.02 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
# action.yml
name: 'Veracode Application Sandboxes Helper'
description: 'A set of actions and activities to manage sandboxes in the context of a workflow processes'
branding:
icon: 'play'
color: 'blue'
inputs:
activity:
description: "The activity expected from the Action: clean, promote-latest-scan, remove-sandbox"
required: false
app-name: # id of input
description: 'Veracode Application name'
required: true
sandbox-name: # id of input
description: 'Sandbox name for actions related to a specific Sandbox'
required: false
clean-amount:
description: 'The amount of oldest scanned-in sandboxes to remove'
required: false
default: "1"
delete-on-promote:
description: 'Deletes the sandbox after its promotion. Only works with the [promote] activity. Default is false'
required: false
default: 'false'
clean-modified-before:
description: 'The number of days which the sandbox had no activity'
required: false
default: "0"
runs:
using: 'node12'
main: 'dist/index.js'