Move multiple issues between repositories #9695
Replies: 13 comments 3 replies
-
|
Agreed this would be really good to have; also to move multiple issues from project A to project B as there is a limit on number of issues in one project (1200). |
Beta Was this translation helpful? Give feedback.
-
|
bump |
Beta Was this translation helpful? Give feedback.
-
|
Any news on this? |
Beta Was this translation helpful? Give feedback.
-
|
a workaround using CLI: |
Beta Was this translation helpful? Give feedback.
-
|
At this time, GitHub does not have a built-in feature to move multiple issues from one repository to another in a single operation. However, there are a few workarounds that may be helpful. One option is to use a third-party tool like the GitHub Issue Mover, which allows you to move multiple issues at once between repositories. Another option is to use the GitHub API to automate the process of moving issues using a script or tool. Keep in mind that both of these options require some technical expertise and may have limitations depending on your specific use case. It's always important to test any changes thoroughly and ensure that you have backups of your data before making any significant modifications. Hope this helps! 🙌🙌 |
Beta Was this translation helpful? Give feedback.
-
|
Would another solution then be to make a full backup of the repository? |
Beta Was this translation helpful? Give feedback.
-
|
Move all your repositories to a monorepo they said... it will be fun they said! |
Beta Was this translation helpful? Give feedback.
-
|
I just found this whilst searching for similar issues before creating the same post myself. It would be a very helpful feature. |
Beta Was this translation helpful? Give feedback.
-
|
Still difficult today 💀 |
Beta Was this translation helpful? Give feedback.
-
|
bump |
Beta Was this translation helpful? Give feedback.
-
|
This feature would greatly help us, too, in both private and public repositories. |
Beta Was this translation helpful? Give feedback.
-
|
easily done by a script like this: cd /location/where/you/cloned/the/source-repo
$issues = (gh issue list --state all --json number --limit 1000) | ConvertFrom-Json
foreach($issue in $issues){
gh issue transfer $issue.number <owner>/<target-repo>
}Warning be sure the target repo contains all necessary labels. |
Beta Was this translation helpful? Give feedback.
-
|
Dear @github @community team, This ticket is really important. Thanks in advance. It is linked to: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
As also requested in the old github issue tracker, it would be great to have a way to move multiple issues in one repo to another.
Example use case:
Beta Was this translation helpful? Give feedback.
All reactions