'Is there a way to import GitHub issues to JIRA?

My team use Jira and we often work with open source software which are hosted on GitHub.

I often get request from my PM to update the status which can sometimes easily be followed using the GitHub public issue openend on one of those open source project.

Is there a way I can link a GitHub issue to a Jira ticket and sync all the GitHub comment in this Jira ticket ?



Solution 1:[1]

Answer is yes, it is.

If you want some manual import, you can check this Atlassian Community post.

As explained in here, you can perform with applying following steps:

  1. Get list of issues in JSON format using following link from the browser

    https://api.github.com/repos/\<repo-owner-name>/<repo-name>/issues?state:open

  2. Convert JSON to CSV using any online converter

  3. User Jira's External system import > choose CSV and upload the file.

Or, if you are looking for some programmatic way, you can check following page on zmccdn.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 stuck