-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
37 lines (37 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
29
30
31
32
33
34
35
36
37
name: 'jira-cve-action'
description: 'Automatic issue creation for CVEs'
inputs:
jiraBaseUrl:
description: 'Jira Cloud host URL'
required: false
default: levigo-solutions.atlassian.net
jiraUser:
description: 'Technical user to access jira with'
required: true
jiraUserToken:
description: 'Technical users token to access jira with'
required: true
CVEResults:
description: 'Results of a aquasecurity/trivy-action in JSON format'
required: true
projectKey:
description: 'Your project in jira name'
required: true
parentIssue:
description: 'Your CVE parent ticket key'
required: true
versionTag:
description: 'Version tag to use for the CVE issue'
required: false
activeStatus:
description: 'Status for tickets that can be fixed by updating the dependency'
required: false
waitingStatus:
description: 'Status for tickets that can not be fixed by updating the dependency'
required: false
ref:
description: 'The branch, tag or general identifier. Defaults to the github action context ref.'
required: false
runs:
using: 'node20'
main: 'dist/index.js'