Skip to content

Commit

Permalink
fix(workflow): fixed (#207)
Browse files Browse the repository at this point in the history
* fixed: complete workflow

* fomatted

* added error msg for workflow not having close status

* added case of no transitions

* fixed(log): changed log text

* Update jira-lib.ts
  • Loading branch information
maira-samtek authored Mar 13, 2024
1 parent f84befa commit 1a452bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/jira-lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export class Jira {
break;
}
const transitionId = targetTransitions[0].id;
processedTransitions.push(targetTransitions[0].name);
processedTransitions.push(targetTransitions[0].name.toLowerCase());
await this.jira.transitionIssue(issueKey, {
transition: { id: transitionId },
});
Expand Down

0 comments on commit 1a452bc

Please sign in to comment.