Skip to content

Commit

Permalink
fix(release): pass projectId instead of project when creating a jira …
Browse files Browse the repository at this point in the history
…release
  • Loading branch information
tagoro9 committed Jan 18, 2023
1 parent e860bb8 commit 46ff7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/issue-tracker/jira/Jira.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ export class Jira implements Tracker {
archived: false,
description: data.name,
name: data.name,
projectId: head(data.issues.map(path(['project']))),
projectId: head(data.issues.map(path(['project', 'id']))),
releaseDate: new Date().toISOString().slice(0, 10),
released: true,
},
Expand Down

0 comments on commit 46ff7b5

Please sign in to comment.