有没有办法将GitHub问题导入Jira?
我的团队使用JIRA,我们经常使用Github上托管的开源软件。
我经常从我的PM提出请求以更新状态,这些状态有时可以在其中一个开源项目上使用GitHub公共问题打开端轻松遵循。
有什么方法可以将GitHub问题链接到JIRA票并同步此JIRA票中的所有GitHub评论?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是的,是的。
如果您需要一些手动导入,可以检查这个Atlassian社区职位。
如这里所述,您可以使用以下步骤执行以下步骤:
使用浏览器中的以下链接获取JSON格式的问题列表
https://api.github.com/repos/repos/ \ - 所有者名称>/< repo-name>/essess?state:open
使用任何在线转换器
将JSON转换为CSV
用户JIRA的外部系统导入>选择CSV并上传文件。
或者,如果您正在寻找某种程序化的方式,则可以检查以下页面在ZMCCDN上。
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:
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
Convert JSON to CSV using any online converter
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.