github-issues-import icon indicating copy to clipboard operation
github-issues-import copied to clipboard

Python script to import issues from one repository into another, either one at a time or all of them at once.

Results 60 github-issues-import issues
Sort by recently updated
recently updated
newest added

Please, indicate clearly in documentation what timestamps will be of imported messsages: either orignal ones or current time?

When we run script, If the issue Id already exists then update the body of Issue and same with Comments. Even it keeps the comments on Destination Repository intact without...

It does: ``` def import_label(source): data = { "name": source['name'], "color": source['color'] } result_label = send_request('target', "labels", source) ``` but it should do: ``` result_label = send_request('target', "labels", data) ```

This pull request will update your target repo. If the issue already exists than it wont create it, if not exist than it create them. If new comments for any...

Related to #48. When a failure occurs, there doesn't seem to be a good way to resume an import. My guess is that I would wind up with all the...

I ran this script and it failed because of the error described in #17 (I think), but because the script doesn't output anything indicating which issue caused the failure, I...

Adding option for filtering pull requests from list of issues. As Github API does not provide a way to filter the request for non-pull request issues, it had to be...

Took me a few to figure out that's why authentication was failing.

I'm working on simultaneously building Android and iOS versions of an app. We're using Github issues to manage all our todo tasks (new features, bugs, etc) We frequently have identical...

This PR adds several new features: - Dry-run mode, to see what it will be done before actually doing it - Add support for OAuth authentication - Properly close copied...