Change jira ticket type from Bug to Task (#5426)

This commit is contained in:
Martin Angers 2022-05-02 08:56:42 -04:00 committed by GitHub
parent a4725518ac
commit 5c0031c8f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1 @@
* Change Jira ticket type from "Bug" to "Task" when reporting vulnerabilities with the Jira integration automation.

View file

@ -117,7 +117,7 @@ func (j *Jira) Run(ctx context.Context, argsJSON json.RawMessage) error {
issue := &jira.Issue{
Fields: &jira.IssueFields{
Type: jira.IssueType{
Name: "Bug",
Name: "Task",
},
Summary: summary,
Description: description,