File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # go-github-issues-mover
2+
3+ An automatic issue migration tool from one github repository to another.
4+
5+ ## Features
6+ - Auto create destination repository
7+ - Auto invite all contributors from source repository
8+ - Auto accept invitations for contributors that tool has tokens for
9+ - Auto migrate labels
10+ - Auto issue creation
11+ - Auto issue comment creation
12+
13+ ## Example configuration
14+ ``` yaml
15+ source :
16+ token : asdzaf89asd7a8asd # From https://github.com/settings/tokens/new (With only "repo" scope)
17+ repo :
18+ owner : UnAfraid # Source name/organization
19+ name : go-github-issues-mover # Source repository name
20+
21+ destination :
22+ token : asdzaf89asd7a8asd # From https://github.com/settings/tokens/new (With only "repo" scope)
23+ repo :
24+ owner : UnAfraid # Destination name/organization
25+ name : go-github-issues-mover-v2 # Destination repository name
26+ private : true # Used only when destination repo doesn't exists, private repository will be created if true, public if false
27+ contributors :
28+ unafraid : asdzaf89asd7a8asd # From https://github.com/settings/tokens/new (With only "repo" scope)
29+ anotherUser : zasdasdasdasdasda # From https://github.com/settings/tokens/new (With only "repo" scope)
30+
31+ ```
You can’t perform that action at this time.
0 commit comments