Skip to content

Commit

Permalink
fix(action-log): fix missing capture of issue for success message
Browse files Browse the repository at this point in the history
  • Loading branch information
tomassebestik committed Sep 6, 2024
1 parent d63dad5 commit b2b1889
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync_jira_actions/sync_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def handle_issue_opened(jira, event):
return

print('Creating new JIRA issue for new GitHub issue')
_create_jira_issue(jira, event['issue'])
issue = _create_jira_issue(jira, event['issue'])
print(f'✔️ Successfully synchronized new GitHub issue #{gh_issue["number"]} to JIRA issue {issue.key}')


Expand Down

0 comments on commit b2b1889

Please sign in to comment.